From d64c4b7286eed87fc329d742b8df6ddbc1c0e1d3 Mon Sep 17 00:00:00 2001 From: jessb0t <77893711+jessb0t@users.noreply.github.com> Date: Tue, 14 Jan 2025 17:26:42 -0600 Subject: [PATCH] Overhaul map process to use Excel and Sketch only --- .gitignore | 2 + Makefile | 9 - README.md | 116 +- admin.html | 118 - emails/homeless.txt | 7 - emails/incoming.txt | 15 - emails/itinerants.txt | 9 - emails/rejections.txt | 5 - emails/winners.txt | 7 - map.html | 32 - map.pdf | Bin 0 -> 113178 bytes map.sketch | Bin 118784 -> 120935 bytes map.svg | 555 +- package.json | 19 - people.tsv | 58 - people.xlsx | Bin 0 -> 12894 bytes static/app.js | 157 - static/lib/angular.js | 20539 --------------------------------- static/lib/angular.min.js | 201 - static/lib/jquery.js | 9789 ---------------- static/lib/jquery.min.js | 6 - static/lib/ngStorage.js | 105 - static/lib/ngStorage.min.js | 1 - static/lib/underscore.js | 1276 -- static/lib/underscore.min.js | 6 - static/lib/url.js | 208 - static/site.css | 20 - static/site.less | 94 - templates/contacts.html | 8 - 29 files changed, 248 insertions(+), 33114 deletions(-) create mode 100644 .gitignore delete mode 100644 Makefile delete mode 100644 admin.html delete mode 100644 emails/homeless.txt delete mode 100644 emails/incoming.txt delete mode 100644 emails/itinerants.txt delete mode 100644 emails/rejections.txt delete mode 100644 emails/winners.txt delete mode 100644 map.html create mode 100644 map.pdf delete mode 100644 package.json delete mode 100644 people.tsv create mode 100644 people.xlsx delete mode 100644 static/app.js delete mode 100644 static/lib/angular.js delete mode 100644 static/lib/angular.min.js delete mode 100644 static/lib/jquery.js delete mode 100644 static/lib/jquery.min.js delete mode 100644 static/lib/ngStorage.js delete mode 100644 static/lib/ngStorage.min.js delete mode 100644 static/lib/underscore.js delete mode 100644 static/lib/underscore.min.js delete mode 100644 static/lib/url.js delete mode 100644 static/site.css delete mode 100644 static/site.less delete mode 100644 templates/contacts.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8a86eb0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# OS specific files +.DS_Store \ No newline at end of file diff --git a/Makefile b/Makefile deleted file mode 100644 index c47ece3..0000000 --- a/Makefile +++ /dev/null @@ -1,9 +0,0 @@ -BIN := node_modules/.bin - -all: static/site.css - -$(BIN)/lessc $(BIN)/cleancss: - npm install - -%.css: %.less $(BIN)/lessc $(BIN)/cleancss - $(BIN)/lessc $< | $(BIN)/cleancss --keep-line-breaks --skip-advanced -o $@ diff --git a/README.md b/README.md index 8aa6ea0..c4246b3 100644 --- a/README.md +++ b/README.md @@ -1,110 +1,34 @@ -## Instructions +## Instructions for Updating -**Making updates** +#### What You Need -If you want to push changes directly to this repository, one of the [@linguistics](https://github.com/linguistics) organization administrators will need to grant you access. +You will need to be familiar with GitHub. -If you don't think you'll need to make changes very often, you can fork this repository and clone the fork to your local hard drive, or use GitHub to edit the file (in which case it will create a fork for you). -After you've committed your changes to your fork, you will need to submit a pull request to this repository, which the GitHub web interface makes quite easy. -This will notify the organization members, and one of them will be able to merge your changes. +You will need [Sketch](https://www.sketch.com/) for Mac. As an eductional user, you can get a free license by starting a free trial and then filling in their form to explain why you need Sketch for your work in academia. -**Design modifications** +Finally, you will also need Microsoft Excel, which UT [provides](https://microsoft365.utexas.edu/students-and-microsoft-365) to all students. -1. Open [`map.sketch`](map.sketch) in [Sketch](http://www.bohemiancoding.com/sketch/) -2. Make your changes -3. Save (optional) -4. Export to [`map.svg`](map.svg) +#### Fork and clone this repository -**Workstation modifications** +In order to have access to all files in this repository, fork it to your own GitHub account, then clone your fork onto your local computer. -1. Open [`people.tsv`](people.tsv) in a unicode-friendly editor. (Note from MHP: If possible, just use the github editor, to avoid encoding mixups.) -2. Make your changes, preserving the column headers and tab-separated format -3. Save with `utf-8` encoding. You can ensure that it was saved correctly by running `file people.tsv` at the command line, which should return: +#### Update the list of people -> people.tsv: UTF-8 Unicode text +Open people.xlsx in Microsoft Excel. Delete/add/update any rows as necessary. Only modify columns A, B, and C; column D will automatically generate. (If you add to the bottom of the list, just hover over the bottom-right corner of the last filled cell in column D and drag down to fill in the formula.) Click into cell A1, press cmd+A to select the whole island of data, and sort by last name. Save but do not close. -If it is returning ASCII instead, well, technically ASCII is a type of UTF-8, but the code won't accept that. The fix for this problem ([drawn from this StackOverflow](https://stackoverflow.com/a/28380315)) is: +#### Update the graphic file -> (printf "\357\273\277";cat INPUT.tsv) > OUTPUT.tsv +1. Open the .sketch file in Sketch. +2. Open a blank text file. Select just the filled cells in column D from the Excel file and copy to your clipboard. Paste into the blank text file. Use cmd+A to select all contents of this text file and then cmd+C to copy to your clipboard. +3. Inside Sketch, double click the first block of names/workstations so that it is editable. Use cmd+A to select everything, then cmd+V to overwrite with the new list. You will need to select subsets of the next text block and use these to overwrite the contents of the other two until you are satisfied with the presentation. +4. Save down your changes to the Sketch file by using "Save to your Mac." Replace the .sketch file in the repository folder on your local drive with this updated version. +5. Output the PDF version by going to File>Export>Artboards to PDF. Name as "map.pdf" and replace the .pdf in the repository folder on your local drive with this updated version. +6. As a precautionary measure, export the .sketch file to .svg. Select the artboard and Export to SVG in the bottom-right of the Sketch window. Click "Export Selected" and save as map.svg. Replace the .svg file in the repository folder on your local drive with this updated version. -**Rendering and Printing** +#### Push your changes to your GitHub -1. Open in [Chrome](https://www.google.com/chrome/). -2. Print to PDF or a physical destination. - * By default, Chrome should use a landscape layout and minimal margins. +Once all changes are complete, push to your forked GitHub repo. +#### PR to the ASOL repository -## Workstation Allotment Policy - -1. Three or four weeks before the beginning of semester: - * Call the set of current workstation residents (whether fellowship or not) `incumbents` - * Ask administration for a list of all fellowship recipients, TAs, and AIs (and maybe GRAs); call this set `privileged` - * Let `itinerants = incumbents - privileged` (students who may need to move out) - * Let `residents = incumbents ∩ privileged` (these guys aren't going to move, and their workstations will not go up for grabs) - * Let `incoming = privileged - incumbents` (students who will for sure get a workstation but we don't yet know where) - * Let `homeless = privileged'` (the complement of `privileged`) -2. Send some emails: - * Ask all of the `homeless` to apply for a workstation, if they want one. - * There are currently 25 workstations total. Select the top `25 - |privileged|` applicants, and call these `winners`. - * Call the remainder of the applicants `rejections`, and inform them that they didn't make the cut. - * Add `winners ∩ itinerants` to the `residents`, and let `evictions = itinerants - winners` (which may overlap with the `rejections`) - * Ask the `incoming` which workstations they would like, from among the `evictions` (assuming that all workstations are currently occupied; if that's not the case, add the abandoned workstations to the `evictions` set) - * If there are any `winners - itinerants`, let them choose among the workstations `evictions - incoming` -3. If possible, go back in time a couple months and send some more emails: - * Inform `evictions` that they may need to vacate their workstations, especially if they are going to be gone for the summer. - -See the examples in the [emails](emails/) directory for templates for these notifications. - -### Prioritization - -As available, workstations will be assigned to the following groups of students / physical objects: - -1. Fellowship recipients -2. Assistant Instructors -3. Teaching Assistants -4. Graduate Research Assistants -5. Best applicants -6. Worst applicants -7. Lingerers-on -8. Groupies -9. Pets -10. Prized possessions - - -#### Applications - -The only prioritization step that's hard (requires some actual decision-making) is #5. -Generally, preference will be given to students who: - -1. Would use their workstation a lot -2. Are near the end of their degree program -3. Have good workstation prank ideas - - -E.g., **Fall 2013 workstation application** form had these fields: - -* Full name -* Email address - - Drop-down list of emails, to aid identification of student -* Need: On a scale of 1 to 10, how much do you want a workstation? - - Radio buttons from 1 to 10 -* Alternatives: Do you already have a desk or assigned workspace elsewhere? - - [ ] No - - [ ] CILLA - - [ ] Signed Languages Lab - - [ ] Language Acquisition Lab - - [ ] Phonetics Lab - - [ ] German department - - [ ] Spanish department - - [ ] Other: `______________` -* Time: How often do you think you would use your workstation? - - [ ] < 1 day a week - - [ ] 1 day a week - - [ ] 2 days a week - - [ ] 3 days a week - - [ ] 4 days a week - - [ ] 5+ days a week -* Cardinality: Which side would prefer? - - [ ] West - - [ ] East -* Rhetoric: Any parting remarks? +On the GitHub interface, initiate a pull request (PR) to merge your fork with this repository. Although the Digital Resources representative from ASOL should receive a notification of your pull request, it is a good idea to reach out personally to let them know so that they can immediate complete the PR. If you are not sure who is the Digital Resources representative is, check out the [ASOL website](https://asol.ling.utexas.edu/). diff --git a/admin.html b/admin.html deleted file mode 100644 index 67384cb..0000000 --- a/admin.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - Linguistics Department Workstations - - - - - - - - -
- - - - - - - - - -
Format: - -
Number of workstations:
-
- -
-
-

All students

-

all active students

-
- - -
-
-
-

Incumbents

-

all students with a workstation

-
- -
-
-
-

Privileged

-

students who need workstations

-
- - -
-

names that don't match any of the existing students in people.tsv

-
    -
  • {{name}}
  • -
-
-
-
-

-
-
-
-

Residents

-

will stay in their current place

-
- - - -
-
-
-

Homeless

-

unprivileged (must apply for workstations)

-
- - -

Winners

-

{{$storage.nworkstations}} workstations - {{$storage.privileged.length}} privileged = - space for {{$storage.nworkstations - $storage.privileged.length}} winner(s).

- - -
-

names that don't match up

-
    -
  • {{name}}
  • -
-
-
- -
-
-

Evictions

-

need to move out (were not awarded workstation via application)

-
- - -

Incoming

-

moving in

- -
- - - - - diff --git a/emails/homeless.txt b/emails/homeless.txt deleted file mode 100644 index c713888..0000000 --- a/emails/homeless.txt +++ /dev/null @@ -1,7 +0,0 @@ -Dear linguistics grad students, - -If you would like to apply for a workstation in the Linguistics department for the coming semester, please fill out the following form: - - [Form url] - -If you are no longer a graduate student in linguistics at UT, please email me back and I will update my roster. diff --git a/emails/incoming.txt b/emails/incoming.txt deleted file mode 100644 index fb69ac8..0000000 --- a/emails/incoming.txt +++ /dev/null @@ -1,15 +0,0 @@ -Dear privileged linguistics grad students (fellowship recipients, TAs, and AIs), - -Management has automatically allotted you workstation space, but you do not currently have a specific workstation assigned to you. - -To select one, please follow these steps: - -1. View the workstation map at http://linguistics.github.io/rlp/map - -2. Don't pick any of these: - - [List of workstation occupied by the "residents" set] - -3. Decide which workstation you would like, and record it beside your name in the spreadsheet at [spreadsheet url] - -4. In case there are conflicts, also record your second and third preferences in subsequent columns diff --git a/emails/itinerants.txt b/emails/itinerants.txt deleted file mode 100644 index a4dac9b..0000000 --- a/emails/itinerants.txt +++ /dev/null @@ -1,9 +0,0 @@ -Hi all, by my records, each of you had a workstation last semester or were using one over the summer. But by Management's records, you don't have a TA/AI/Fellowship this semester, so you don't automatically get a workstation, and will have to apply for one (there will be several up for adoption). - -In particular, the following cubes have been requested so far (see http://linguistics.github.io/rlp/map to determine if you are using one of these workstations): - - [List of workstation requested by the "incoming" set] - -If you're in one of those, please be sure that all your things are out so that the incoming scholar can move in. By Friday, if possible. - -I will send out a call for workstation applications shortly. If you want to have access to a workstation this coming semester, you *must* apply for one. diff --git a/emails/rejections.txt b/emails/rejections.txt deleted file mode 100644 index be7f53a..0000000 --- a/emails/rejections.txt +++ /dev/null @@ -1,5 +0,0 @@ -Hi all, the workstation committee has finalized our application decisions. We regret to inform you that, due to high demand, we don't have a workstation that you can use this semester. - -Sorry! Preference was given to applicants who explained how they would get a great deal of use out of their workstation, especially if they are close to finishing their dissertation. - -However, there may be available locker space on the eastside, and/or overhead bin space on the westside. If you would like to pursue this option, please reply to this email and we will see what's available. diff --git a/emails/winners.txt b/emails/winners.txt deleted file mode 100644 index 193743a..0000000 --- a/emails/winners.txt +++ /dev/null @@ -1,7 +0,0 @@ -Hi all, the workstation committee has finalized our application decisions, and are pleased to announce that each of you can use one of the workstations listed below: - - [List of workstations in the "evictions - incoming" set] - -It's first-come, first-serve, so check the linked spreadsheet for current availability, using http://linguistics.github.io/rlp/map to determine the physical location of your desired workstation. When you have selected a workstation, claim it using that spreadsheet, and move in at your leisure. - - [Spreadsheet url] diff --git a/map.html b/map.html deleted file mode 100644 index 0201e6a..0000000 --- a/map.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - Linguistics Department Map - - - - - - - -
- × -
-

Instructions for printing / creating a PDF

-
    -
  1. Open this page in Chrome
  2. -
  3. Choose File -> Print
  4. -
-

You can now select a printer as the destination and click Print, - or choose the "Save as PDF" destination and click Save. -

-

- See github.com/linguistics/rlp for instructions on how to make updates. -

-

This box will not be printed.

-
-
- - - diff --git a/map.pdf b/map.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ef2408cb9b706c1f5e3b4dbb3357a2411ccf4ae0 GIT binary patch literal 113178 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

A&jtG?jYsOG@c1( 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Ðu=+b_8}MR+9kWNxKprZ=nOA^#H3(lVn6zz9hLpm2@mcAU>- ze_^75VS0N8hK)DQ%)KlwouZ5RO+Y)<&9b@Rp%ntAmm?B*ZNelI@ zr_dqt|L{d}sJJR~a`VrtAl`z*rubFwBrVTCYgX~%R9vu6Kty18kbvZB7!$&7dhjLr ziU~=Rx(}ts#huqy(c{>;3q$D_D7N>a-V7DEfx3VJK;_-5;)Z#o{3MW`92pBW2gR?A zPx9g}9*~HShNsch9)ckb z@tc2PK}ddEoyONYCf-wcNQN^D*g4dKsaiU}VTq5X=H$k0r-en7XHuP<;$7OFNnuBN zR#;FLY7|46OY9}0V78vRxarJ1G!1Ch{H{+h)wfDBGHRvfI4D?wAwHox0S|l1slbNV5MkGhV z(Md^7Ij4=oc2Xf3z^0rqsy!#Xrh(41J2S|~&wqeAbSp#dNoH`Ecgjy0LLr3YcaYL= zzAcEm9M#QCHscrx`_43xdMJNxhBGnesBkp3DX}poqO$9{aLW*@z{@1PYjp0uM8FTi zGi@i27&Kw21V6a0nMq5a7Q1-NuraDtW%kFki22i%;X9bop3YQ0U+wP^bNK3&i_eZA zze6PE4><+7T4`qpiA(g?{C^%{ua8TV_I*76KOP%3lJNq@-K2GuwAK92$I_2V*GM(1 z53<+)=P9f&Cr`bs*4#<|w)G8}p{Uf~mWq3OB!m53=z`gS!UEa^uY&Fr?HTI1MuU>o z=4@d!xao?bKAyhbW;NbZn<42d zdjFz$0Td}je(%B}HzNSl!I({DM*H~(PBPl~63K>-^GSG=CLBZ%8j+ALHN5zOj64tU zmEy&_ugd7h#(ogl3H!3tzgAezp`VRfMLT&0NbMlZlu}11cw@Y5=ta|Hnye&d5AoBE z=Y>-#=MpaN4{zwYeCMjLwYpp6Fvd74HCde`rw9&VZdk0$BD8 z9XxMPuP;^8>ukpGR@ z!Zs`(K6sdFNu})xX?hha(Vfn@_k6Xld;H;+D_4Fxib_%yNj*-^9JPi`8u15-AYk!< zcLU*MYwmJk$SlFIm>Uw{KMMBcdKEW(M`(enEJks-%6i zlh!ErW@qlrLWb(Xx<0hiw5`<4-+k}iVC+$n-IJ02XT|EbrtjxjRB;o%Q||~+zqy~D zaTj(C1s_*K4m^MAC+5JRvu3|d^EOISQ<-1z2)u#BDsHSFJUOt-VmK0GIKvdNWUqLO zIbc}EPSW{})mn3A(=`=j&@N!QM{5-CXKARZ$o&`0_`_C7MqCpuuPN&FZza1_X~`bV z3iC`C(!HYW0RVaw$Qk;JaSU~|WKX3ASXK&#Ots5zi^SMN4dr z=fx`a`=s2A3~f?MYD^6_M%2S*y+!HU1R|b2z|7Y4A{xaz$a#cInfZ$7{m1NcroZ{UN^{xvSY;YVd3?mgFhup!{x2rr?thR9& zk2`va#GE0n7tO`x_f|Yq{90x~>{*o6`DUWNzqxj7hOjq^QM|a7di&gS)r$#@RH>!2 zSu4YH+akg?_EKSulOkN~32{MH-Kg3L^xZ zyaNh6Lu^!j8&&Wt2CUhddmZI6S`r-`6dEuP1Jn#$xGw3X0HMWq&~zRY^7q++A;~`p z;y~`n{`|jx@&JAk;#KdUJa~jGJwwir&t+Ed-}EsS@kf{$0fje$gn{A@%w*Q^h2cA9 z_+qz!Me5)U4B5%z`3?TjnYqasnT5jT7YwOk6Q(lzg7zT{U+NgPLL0JyL0eKKlu;p) zbOv6&*`7CK%@1VK8*_0y`Ls7YvtQBq5Xxplh{YAs^MO_Qlnh~?bhp0CJ$vzi>h-Xr zw40W$W77;Lm4^|i{)n4(=a9pa8B4AE3by2svI6$x3hveYGS_v>t*rWDIBLoGCh-d| z*$TY_1f(pYYZulA2p$TcJF`y$9(XPlN)iHHsEb@o>`mKse+&P{-O9~mq)x=A&Kg3*- z?`N~i>E~bTD$;T||DygIiEJpm&T-pV>Eg#ZlEx9B~ zwVAawX&xH5_F(nDY3>My(Wn;rl(aMC;=i5ic%oGNatrHL@z9dHTpBh_Fs$ST`uGmV z>U>qt4R%a=E|3xRk{2|+j?9(p({S3el8(}jU8V$g>(eV6deM)@ZKW!~iZzqKEz&lK zQaH-(XpU&?^6-D2YCEdIf1U=_=|_6KA`BLKr+$w?Fp1D8e%+`a-5LhH`EKN6Q?fZw z`Gm;6|E)=|&12?lSh;wM+9x70C24;~Orda-lt?lSxYK1+sliSW8L(3)%%P!7m|d`w zvuZ&=cUuIeX?8l1^VYPN#x3;E~A{7sO#B* zK>QBz3e=4<&b1#Pbr_QHJVSUXu4iiT14I@Dkg8zzf5H9~_e@5*&>60@t7=}&y1S4H z)xqDsXM#49=EvWPW6K?j6=%hFq@Qx(vf0}qweoqtr&w__AEL8GFF|px4ebifqSdh@ ztH^H?@whD%Y496TqQ%LHJ(&;&Me{%!!|cMMJ`)pr4j2_@C+=cQ$O?hhaw`LZmm%Zq zf{b%eQndhqngh%}8o{m%3SNoxj)mN6zj&y`o_ z^sI(@p>QamLxLk>D=l%?Qbn?o+Rx|#DT~3=Q7_m;RzJl;*An4-Kr&ZC#rmx1N>&40 za}jfWxY!0{)^J6UemsIOOQcA)Is==kRve~|Ni5LOdZxi}0cho5x*Fwc#bNSEZhZ>j z)MTMIYgh&4zcu0yFwE#l(Zf>=BO{GV-&C<0OaBv~^wOb@oq8+wNz4r_{R$+5<@6mx z%s*%$egdu9WawiD%!(KjG8+2W+YqS8$vcKBShK~NYo{8?pte2uvxx~7kpD&frx#=o zNKepIJ~!3hBW+3`$@-yC;X}Q_<{W^pI`|j8i68MnP3#K-or2E+&~%&f1q8jvP6bTU zj%8jwXcq`{}&=T#ZT2UF@=#j9Y`v;apW#3evs_ z#k9ncy&CU7CScYG}7OCEYxZZbYv7lUdEkNkdE6 z61|j6@6Lx}5wspR>${q6wjcugiuB1Y&pw!21&Umpb>fC-&l=jVE9u1|$@rA$$X$kN z+2ORi&UfSV5dUsF+2E?Mve1%kMAMb_V&Bs1QuY{k!UiKrE)gD!eTkTg#U2cc+^WRd z4WKsdi~XbA*mBZIeaDc%_S5+egzbA;&kYDldnJeo_ar2`JjRxOlmoWI12VI{xle~? zaVDDkpivb~pz$Pu#FO2OS$c6+Mr>5KwD9wGwJvfqsEIG2rp#ql;eUacqNhiZ__7$4 zqoH)D{!7JGUi|Ig4zFWg=06?O&p4<^;#q^x{rzi+&SyNL4sO$(^_0k1#v@8ey-xLz zDoM*QQ+pwrxj2rTU(V5BdWBg^oZ1W2|7l>#tMp5;>*SJRqiPjTSNkwTAkCI2V zyv)%l)k-~U+Pq$nnCTB71Ddn`j0Mz5K<(&3ocD6UFohc(5IkASJ4yY`BKJyNlc`Fn z@12x(MPS9^3Byzf5Kz@%C4P&g6mA%r-b! z>*!>^&BHDeeH21+#Hkv7R|I+`0p)u@TXb+=Q89|(Z;q3$jid)E;Ij4#c+x>qShuNG zV!!p1kjW&d1;B2p-4CDONxDfWZ=&*&WfG20jgC$cbQhRN^q&q@dtsCA-VsW-;Qn_s zC87miyXD9RbWxn&DLB^|x1hl6+%hX2^PIBsr3Bx|Xb=;rwrZSMV3KSMbSa zN9wM8e{cl-bmU5hB>*m#8NSunyKBwJXODXVfbKH8KNS!pIkAh}13g!&`6V_Rm)NL% zBa(Psd%IfTB)}W}1nGbl22Lr|15Zoc$8%!#CdZ~B^td2?NmkCkgl-b&0M9}L3!@1{ zC-R3crSTd6l1iN~s1EW&krYdtCCorAuF@VW^`(&X3cjziF*t2@Vbem zLCx)`^_CIZH6Fe?cQr4%HI<2fkcn;08s52u%$LxG&zonHN#?xUfj}W=2^vtwUZQgO zhwcRRa427sA%IfH0+htl{?h3E2#M3$mdoGpyU`~3~ zvIAWzk4vjQ7JE#6>{zHTYO@lIhb*g6N!XZ{ia52K3Zi0ITL|j2wpg=mQ z(ROb7G2`Z1=274wHT7__^#bAkGDq?($mQ91U?$pl<+YR-Qc^+IbCmcDMQM|&0`9e6gw*c=-`0l^V$ z(&D`lK~8I}JlupLPo6FF$d}%VtMpbd*A61@gH9g@sRqEYN8Z0vZsi6eeUayi>QASA zqrQCF$G#4;a`c`ZJ+-UJUyaGHGHO*iGc`6(bla_wBm2*5yG+?7Az z)_y`rpN*+9_v|0og z1EA<=?DwLJ2tmIWiRiz+6uW9?`YB9@S63jOpd|1eF@GsXj|JHzPq7PTfh(qf;haYH z43lxwaguq0_@4q57npMA3aOp@#3J+GzQxQWm6h;7I*xj>rI;51+WFE8AicX#b%ha< zk>jUL$sZQ_am#peoizH9P149W9OJ8EtIyn0-#W2$hTzWfM-L~|r(Trb$jHphRrANY zGtIIK-8;rZ6Ye^%FZ=;in8l{=7r!?FA;H1ena;R*p+%|@J0pJFLJr{FQjZg)ypBBd zl1)BqDs}h5rN~F)|4Cjf(cI==PCq+##N5S$23=b6gQN@wvIi)}10R!4pZ_uZ`;2j|R(DI`v^n{!@kd#I{by0kQW@k{HJuL|tW#vQ$19`Yo_&Xc9-#X*Zw< z(!mf+jUi({G?g|ZL)Z%dRsYG8LCa5>8!(d;S;KfC8gl)Tq@==E2d>40W>dYlew=bT z3)cCT!%A_g0UsPD_~r>p{fJh4a6B`UBjd-?@uQg;U~2fU58kj}?LCVvo zitFozeLz4TH$pnl2c7ux=I4k#wHMz|dt#4Werqb-dmU&4z>_6%9dH=HVoZb$O#m7L z+!k;~7eTjZPfD_?cz5w$^b!XJpLANko^+y}aha2=wfiddfMu88zT{Ph{few-eLeW= z#o#(=6S?G|gg}3t4y1D75AIxa+&A#uLGAgxMQS2gfOZiUGGiawJNmJv`fwX1Kh@8A z)-<)Fbxy$++-8?{o|`1mz|Z%mg90h5T3Np7BCj8#|5#aT=()+LW77Hjx@c{X3zP46 znHO(rg0NXvB}4@J1q4M#;#J~TbI^auVc?7L&Lp~so8X;vMIis;y#yM{IR}NT)OrE# z)w`*xX>a49#-}jw!MCTKB2Ll<=upCk`h`TN`)G9uo2s4oJ;%k9$7K&rh(}MDqMG(| z!}_D-?UBdTnEv&zPOUga-kx||k8c{pSq+;T&A&Z<<2Y~Z?^n*D*Z~0z1t_-yz;aGWdnWkaB%?)8H#|i-VPI{q5EY;0o8hH(-o0tLv%8!x zB6itiW-*zPhkodE^(pbQQ=;OO`GfO(ja4IAS7H9!6SCtmUu${;Nzc~aWQ<7pda|>W zT&>;ig@6nIBrXD8Fe%xU&ESqyW2n=E0L;mi^|e(>fb zgnneBE>7Ut24c=EXV+76nC|7lx zg4|*TjSMz{y z=K}+8gqBia<=h#|Z0fVnmc{=}PL&Sm)@X1)Drrh|cl;`yWH1>SZb@KYw%&X>P z(RY0CBQo~7>kAV95R37!Lyh=p4Ow0zEzFIc;*4*}qFQr4f(hHTJ4|roLZAdtV@2k# zZd}v2={R;J;&Yai9D{=_?Lu*fNuAVO6gqYKhqwn1!Fb^5xYcCbIOA77HhO=yHk*Fp z!R7OS0GDJ+J>4_9@@ZaP?byG}Oe{yzcJtbeX=I=|pX2D|G-+B69$N z<8Q2!s6)M~vC;B0Fn5n_$fxIL`}f#WgkQ69z~?PyUh zBfcQa+%hF+(NUrwn~||=XSyUU8W9~Fq6!J#$+O!>Ia;lElDnVcC3)87t7lqn!a=%u zX2$H9?Ojyqrl1T7_|xehb!rFFrf=ejvjF?S-F}Azx%4;!YvUfMdja|HN=VZ z^I33G){zywvF!JqRQBW5Zh<*B$ww8xU**yMJr26DvoR3D{@u(@-EO=iUhqz4JiYCG zx4?TJpv(w?TLaqr=vuqHL#q0NSx5NkbgQ2n!NOKQeiln3K+9ZBBKRd9w2$2st$lz$ zZy7b)M(yNS2tk`IEbYF?^e<=unQOU@j=`T|uK4@cjSZEAb(^h(}Kgv&Gq?zW2e z4%iOkv2cCaCEjn6pD^6;HS*wmKnt1J0-wSB3a{TL{sgaK@hnE_efRq6?B<0R%y~)O zC|nmTI63h;cVRvlQepmnh&=$71bmqG=Mjqvj!q8S-R<~D@@X&;{K;p4VApOsBUYc; za0F`!Ih5JY$<)^}-b5xdk?k?*Ad_t?$fpxdAXJus+*caS;~Q6#Ws`yDzSyLA?;`$4 zCn(=9G(2is$ce=#lm<`zbJ3HfZiWm0KPf7O-X%9HsYFn`b7@m`R=lsg*Cy|5X1LQs z)B2^p0xdkCTJ$RyjBXD5VzSGO-5l1f|DXWaU0JgH#&buf{c z$W6MKSeR%{dYSY$8EP`dWU|RjlX)g9OxBugHnBC?VG?8#W0Gc4WOBshlF2QT?@Zp9 zyqC#jtjtW-UDjLnm28x3f^3Ftu55{HrOZlZD|3+r%EDx6vSYHFvIny7Wk1W_%HDU7 zb>KRD(xF=iO@}W!^zSgV!!Tj&D2anU2h-%)b~7(~IfPjAN!U zvzg`0CdQfZWx|;QOa_z3lrweAN#-(hoq5c>WZp99F3Ntws@X5up=>_;6Dx8or$C4I zaok4EmfOq4bD3NrSHabBP272|g}cK&=ALoCaDQ-Z@{V#|ZZ7X8?;-Ca|4KemK3+ae zK3Bd(zFNLfzD@2Z_mKz7cgdsW$?|M@vAjxtM1E3!QQjiIC4V4)D*sXbO8!%((8Z{#oXSNS{qFZ^F!KI+n=OTR8-x{U8Kz02w@ z4qZIE?CKKNCAmvMm&z{nUCwp6+2v7}|3}z+z%`M!@BSiA!p^Kg31Kl|5*v0=5fPDM z7aK|y5Jja!5(vHbq7(t?y-ODbY^YckyMkryuH9YNExOGo_#}DHJ)ryUIluoo|Bt&# z2oXbO<|+4mUEk~d*F$5evAnU<$1WMWZmi>2_p#Ek@niRl-8Z&uZ0*?2v8Tsg8T(-D zi?JWZ{)eN>(dW$PEaj}>Y~t8*c5^~lT*rR;vC`}<(%bQzSR6l^DoW+ zjAM-(KTdDl%iU4_2i1V z!Q5zWIyaYF%B|zJaeKI@xfi*E+y~qj+;`kRxe9GUo1?9*O>0lqo~>=9ZLYmidyDo~ z?H$^l+G6cs?I`U;?LFE#+C|!x+6~%=v`=aGYhTy?PWy@WYwcgO|I$|Q#_+!8Y4h}W zQ+acEMm#g#D&9t(JFVe@>sIOx=%NXx6GA4mPxysDhi}G@<|pva0#epguv(BLC=yf%9twUG zDD@2WcI!pxRq74s{i^pDtxZp$SJ3wKPTCU;)Uk9beU$!1I9X^d^cNNh>x3P`=ORtf ze9>-^R1_gf66J_0M4h6`qE8dK6AdPsPjr~*J27)&-o%oL?Gukp{9zJrl4z3Qq@|NK zOp2V8I;m~a;YsHv-I?@!l5+A_lZ__3O-`6xFu7^+t;yd{VNcPYVl>5JO2U-tDcw{0 zr@Ws!W-4dul&MBjt*6>g-8nU5YR}ZC`Yipi`o{Wh`g`;b>z~wrJ#FkXqiNfwB~9Bi ztz=r$w83d_rmIh%Jbl4*%jsUzGp8S#es?;ap)tc?hW(7F8SyjHXB5n6o^fc#y&0co zelv6FOt+aKGZSZ4%xs+5KlAd;>oY&h(w=29%XwDpth`y3vkuStZq{$JhGy%{ww!G< zTRdAfJ7#v(?6%p5XWyCq=Nw{=_MB;R4CgGHvvH1O&b~RFb1u#KZqAcAc&_H$33Hds zb)M@tH(+k!-2Ay!b5GB`IQRbCKR|dj&S0j2k--v!bq4kZK?b=7#Rf+V&KUF?JU4h} z@L`_Dym9kp&Ra9jeO|)6%6XmhuFv~v-tY5A%@@o!o^LaM*L=VE!Si$Gx6MB@|M7gZ zfV*Jc0?P&47KATIUr@i`^nyzZUM%?2aI7J1IMZ;Up|#;oLr+70!!*M}!$XD_4PO}k zX^0H}vyiorS~z8)@j~l`+ZOsPj9j>9VcEjQg*^*zEWEeyy^)5|BqLL!4MuiGVxv@} zDx+gYCyj0!{bcm3k$jQ*BEh0Li&iaiT@~9=toNiobTyNZJeA@V?@sGx;#k|FH7Oz~qb@8sn5sPycA6R^J@r}jL7JoDuYcknn zvB^pkXA?h@Fq15kI+Grgt0s3%9-I8WguO(tWcCu1C7YJ)ULsx+v?Os!(UQg`hn8Ge z@@UC>(=n!`sg5aaI@{F3)W+1qG~6`Rw8XT+w8pgC^rGo~)0d_nmy%0`OQ$bgx^(kW z_od-WGneKqZCrX{>6xXMmp)ng!A#AJXExK!$jr*j+H9v;kXf8rhFOtWomrFFVY7a- z`)2RV-kXm$=b6tipJ%?p+`-((JlZ_LJk`9=yw<$O{F3=2^It7SS#T|;SuC+wW8rKe zwg|CEwkWb_vN&#W-r|nMQ;QFlqb;>9r&*d|I5JZ{-< zIbiwF@@GrsGRe!e=JvDuDx7; z`K;xOms>4&Uhcg-V)@?XdCTjTA6kBH`R(PemjApQt+=@2`iehSPF!idGJa+1s>!R4 zuHLfx?V7kX``1obyJoG&+Fz|gtm3SO)_uJ$cU|>*!TN#?>Kl?bC?JJ%Xp?x;b89tg zN9#80TbnI6H*FDYvDmV5OVF0oEl+HOHj{1iZD!gS*cjWG+F06bve{zeZsTJkwu!e% zx5>8IZ&PAZXVYZUYSU?R#OA8apv_&Iw>EMcrR`W-uI)TqBU@8jOWU=!*0zqeuC|`G z65C+gNZUBuG}{c@T-y@cYTH)ZL$*h4FWTO)ePjE(?ccTvI}N+9?X>Om>?YgIva__a zva`1HvJ0_GvD<66&#u6()UL(uh+V(k6}vljkL}*r{bKj0ozh<2e!acSKHa{+zQ+E5 z{bBo)_LuB$**~&>W&h6p4|}=8B!~G9#tvoU)q1oY}LyyBf2ZiH!M-#`Tj*gBlj^2*Zj#-Wsj_r;;j;9>YJ6?9Y;dtBe zzT-Q`Pg{wtoUJ-r>8(?@&fHqLwRh{et(Ugm-1^o@-D!f8snZIl^-eZUPEI?VJe|Z& zGN&-7Y^VKBwN8yr-A?^Z_nclj{pK{}JlgqdXQA_S=Y`JZ&a0d^IomorI=eahI0rgM zILA0AIcGTUcP@8saPDyKaX#sM-g&_Jt}}KS?V{l_-^J3!+Qq>|=92GH<WV-AM+jV@G zYWLRNdAo18PjL@--{XGH{kr>o_a8j8Jls7Fd7Sn*=W)y9g~#unYM$dgCwVULT<&S( zxyv)aGu|`Dv)Z%M^Ni=9=QGduo_~2Ny$CO!m%i5=FEg)=UanqZuRyOTuN1EguL7?s zuSTy9uOnWky)Jlt=k?0#4{tSZwzrPAzPFM0N^e{5UEWgfFz;0FT<>b{gWf&f-+JHn ze(L?Jx57uwXPl47$H2$jXQPje&rY8JpD>?Pp8}s+pMyT#K4*Ofe4hBc^O5_qe6@Wi z`_A{Z@ZIR^;_KrZ=9}W1;alQ+z_-WugzqKayS}e{fA{^5-&j9^-%P*7eyjcL{C4>T z_{I7q`Q`dm`L+A?`d#q5%Yz4!(ZYb>>uf$ z=AZ9h?%(Wx#Q(hip#Ky9pZq_H)y3n)w0N?3p4d#hPV6Xl7YB-C#TnvaafA4L?@{0sXM@zqw zj+5$1XGo2t%cL8nPErqPpfpChM_M4Qk+w^ZOZ%larB9@9rGEvC3ivueH(+YO`~b56 zs{s3eodM#2h=7!U+<=OJ=764nvjNuw9t6A&_z<87)CklLoESJK&?InG;FdtwK%c;n zz=Xhzz=FW4z~;b1fyV>S23`)l8TcUZdEnc?4}tPPmFz2-woD|OC0it0Cfgu$lSYIICuIGyLD?hO8`%dL#NY*u57G;o9%L9~9%L0{7qlbDHz*`1J}4uo zFsP=1B)B_sNR^P}TpmOv186=lEtq=Go$|v}HW*96(X5R&@+cOgIsstnwE<|#Fw7R9 zkcCtI;GdmE$)ra`5aw_Y1Tk8ukd`c^osRRN;MdgTT6e?6Lk|Xl((@E+t61_;}QLAYo zK8>a-*WpDANJ{<}hWbyq(uXW;ZsB)^)rx%sq|QRCjN?0Qfnk0NXz0h{AnXT?MhPqB?Qo}rA=Jl+1Q0Qb1AXG`1Y!h(* zLXDQ1wOOudV}oPapnS6ah6Ml)Dz^Qo+Z*M^HjxSP#S459*&NM>YeV z`Htqk>jROY841}0s2BY~;}dHk>`(PG6vg659H`S8R_Egr9_sH`71G&RUEe0;K#V%H zfK|ZS+5#amv(aY74^V_;D@)-N%LChEE;xv@@OAQD!Tsi2;1XA5lWo{~hoAbTO26Rei=|MafZaHH> zjL*J!>lR`|Gh!oZ!G^DqA)I>u#fVi36Y2f=nR|de z6DdkaaNijut(7~`R6dGThQr<$_dp4{9e&g>`}+RKxu&Cxqg718-*otGUdV@dA8H?U z^aa*HSCS{!B1fXk;GiCYZ@bV#F6u))6hl4hgz`FcsXL(sbct4NBdMaq5%d8hs0gX{ zFvTId3VhKujja&j&`;mILlwn-RS4JC)i0ym*HB(3Va+hAqW(h+gQ z{?n+T`bv@_W76VMVEjK(6E6u$mL!5Jm4%;!Hs0^IDc}lAsZ6Xd=hrqCpN8f_sf68M zo@~@6YO;WXavWYHeg<-?<3wU(I+!DC%8L8oRYel^nY{->S{EY^MU8F)3(b}@K{Y^n znnWC6AqV;8%D(D~-YjTFO;CPMCW4U}SrxEfEhIk7IJVnQX-4C2bP)7rZs$%{mjk=8 z1@D!VvzrPN!z4k0+ucN&oJR^c4NSFQu+Ff)&-{vxUWr?r{l$&l81)DwA0<4lyKNG$O33w4gqWi%GGHsFTe zcNJ@DP>d$QpQl(rGmoA!v~Gy-MoUO5e3=dLNg9x;Gzb1@d_;?dlv`{N9A_IypurQB z`UEluR>I=VmypX#N^ht{kMj!l2m;p|C`d&-PbRl$0nEZ$g_u=@$jC_u+f^Y7>eAr5`+x02868AUSZH&$IAX zhI0WgHOk;E`bvntg&24?@`Fjgbf|}i{gg|Xe9Z|UG>T$j(ZrI_cU@?qVieKBLX|`P zFpycLl|j(e_>uJ!Ze!c-iM9d}DYUHrhXt2X8qy9eJu>NlNs4%lF@2LKCG$ zx=vWb+HQfE8m1Vkj)0cQ78mdwtU(osMqR!9?&c{!gO!^wXNHJ69G2D2Z#__V@mjZ! znGjrZ>Rx~b#i)X6d4pJP4k~X z$=?C4TMsNq;T?X0(9md4->T5AlPw4D_KEg^vHJhWVS}I|7Cx=KLIkrBbJxSd1w(fU zO8#Ita!wTp>xFE;jKJ(54ae+q|6ak9=6eT9L{UWqwVWJs7*xE6Ffr;6XGG(#4hU1? zhI zViFx|Dx{v)UhIC&|IMl&uMy%p)-ah5xFN6#`!9GBTBabohuQR@j`B~qdy6LW4qU0c ze}-QgSnL{_=HLoFxc_DdDCQ{csICDt@QAe5Tk(SKY#s(&b@?~I+FR!7(dyLzhPcMqma8pQ&HG!Z z?{xq^1O_ZvUyL|`VH&==Rjxyx>AMamlb>)DFbA&p8_VK+xe^?%pVF)`(+Kmrx$DuVR1u0e*K( zH>J2mch~w^3n{;V(A~>l1w4NAy6Nr_3A2cZij}j;Qpkscq0f(O5|>%rh|2&PjEv?>%A}|7bl*DEDC8v2(Z|qN$NU*M=8*uV zN2}HT5~Vy{`k0dIz#KKFQje&ax14c zx8(r;c=XXV*gzj!IZ1>u%v?e50}I43%7UXNSG%SzR~zzY=$~Kg2GoCJt3Kz6!$F7D z63eenR@1<*Z*1sbMiR_X+yX}o;>d3ilyWr*dah7nB9$qxp{YXFPY{L&%Ttgv0grH3 z*pL~cK3t2|zzSzHA{x(}Jk_ujvtbwY1!Id2F`tt%m{h!mfF+VrdXXo9sx*uD*!v{@ z>b7tn(DjBP3Fk;Ef!^GLHZvd2|ArO(2Z-_xI?9ahFpUJ+AvL1mdoTon0=3vQl--vd zN1+b+RH7O3w5fjr>Z$KewN@VNt@m+&)3^(8_>AttfKC0&JqP;U{~}kTEk%k&Z1dza!0iW-%(v$?|$}kp*66S{xh*x!#Lf+UA)`1?>7xuzG zPDm<07Z!4&*0vGoB5cbkNN*la$z=32hVb_Q7pPt=!$1)D%yy^LZVaNygGdB>GoBd> zm^6Bj-bU%G6eKK$GeOA)d&TKGfEH8x(SQlC{gzEVRaa?%l?AV$!Ne?ohrWS%P1!^K z%XNYvxIR;rN@A~}ZQR#IU?Y*x+_$sgeg)0>2opminumZkSW8c)(fw2&1beK4a@0=2LYD0wBA5O8I`QoCiS7aZ9f#wFE9`gM z1qrK@h|U8Y6=ww(>jT_Y`}-SPiS&&LFLa7c`DXh0@s(A3Gx6>zmL%l&>@7`zk@B;o zTI>~~v?I$@=jj2pdykc)NlL|`t7~+X&2(rYY;2eE;iowGjc>OC*M7Ld15XG$xEc1BtuJm>%+rzA6nh8kWQYu^T`;1~Mqxak>992S_)C#UqTO;p$!;fy#tgbK z#@%_Auktkf&NlkXa?b=le|`K+~|E1%nQ>Gf=0N*3eOf&4C06K z75$*Ti{uzaT{0IKtT4jF;_mH(?{2?A>UDc6 z)5}EJ*+g7R>7IH)Pg6l%hbWhYhZOG_#OpD|GdMVmE->Zxk96Ncw8R8yd1Lr*iHXxf zfNA1Au%gl>hj%aB@1o)KTM1)O_!30}D6x^*`b$(Rqgf&y2{05sa~Zu?3Aod%PrVwEcFj3 z7gW@+*+vu-vJn{tSyN}uT)(#U%mz^si(*&BmPf(JIG{9uEd_5-v0^RU^(qQn;SRT{ zHW8H0mEP=UXQ@SLF$*Cu5`{3b9cm;rfjZyT-*sk?y4iNH{{+auE)F0F(q#dZ(&-vv_n;oTq5yLig+hC}0FuVcIkR4*_QaR!D6*w}=`<;Lg5gLUEo z=)82_QX_+IGxeG6N`20vrA}(~F~V}{Dj21dqY3H;lhl!-PTfR@&Z4eCMz7@tRA$C! zL5+|^Kc8F51Q_I0XK8M;s+s2AWP+ZWRRjqHhIg-39wfS02Dg-4gG4vb)R6$BQY33;J0=uWR8=1+sSttJ z-x7RZ&CYlp2^SVunUF+taRQ9i$^?Zw$y7?$G6C;Qg6?pNZWNQEt0;j}pqy50rQ&bO zdj`}lJdsa)qK>-bfesHd_b%Xp&LgqObEwNs73JOJO?G(=i}@wLpyf#a@00Ukqp)Na zSSa;H9K}}vn^dr9Y6ppC+?@+!(5uVsS4IMjJ%-|Wo1!=R=?iwQDy*9&>c(rZX6;4+ zrc8HZb~s>9uT)=Y`$f=oD;`s{V$5}3Y;i(qX>n1huq-2?I93oF7ax-)lCMQMyx5}n z($bP*<~#94@SXSs_zt#LOjGTLOEa{6=<80kg8z)NIpC#`!LAPV#`1o7@(Rs(Ao8vz zFn@*RGJv$l)E+%p)LD8|^b5Fgr?FNHM>Y!Z_ysk7x)0AjzIyu)jVxB|_QV~#`6frK z@56%FiB{zM^6a*|+SzXJ{r1}vC;GoVvE2^F=w&C!qF!P+WpxBb_%Gf*HG9jXsSqyb z2gEx)8XR$oezm%xRP`Z~&n~$2GAZT?u(XIJACP1CIf~1yox>J5G_Ln(8PX7-&510< z9mS_4XF~pl#Q{t{59$B#>+h#T0TqPh`t?4h0=#w|%p$YUH)qi|e^i1ryjoOQPc(>q z@;wCDa6a(OH(*zQ^;#njQ5j?bFlVeW6qVXOs-?+as;B9oDXil_s6t+>V;Jsc0D7D; z$C|S86gs@h8&x+CAocuqFpyQQuCl0JSGi7?Lj>P>=647d#FcGTqHlkc)dxt4py0@) z5P|QE>e3CO!ru6Ntg(f_t5WgSh4>r3cV$FNS5wvHEMXRmkdy0v-bX3d(gP14KKSj3 z1`-$YB(<)mf}1rGS)tNxE|O4)S#1e9=~^oW^=Vz}$=;Sa4UTdEqTd1_!hINEmKdvl z5vuNt2yazL;jyypnw)xorz`;En0$034=o%-T7P$n!ios9O$!rt2{3;>loBT*^&TX6 zP?W!CPm!pwo+t|q$c_@=i5SLj0JdyHdf1pr`i5C8PCiHdPi93O86RgljBjZ4A~#0u zKUBJ}GN)#k)ADeb0>nUgT71YKG8qI92SrBkKA`d86`S3Oh~k9WW4GegNc`3O4Ol&1qX*sKz3n`BX0UPdob?_- zE}Q(1-w|>&6tS>!zZU`&?)yKyIUCnK#BX#7tVRp|*8qS8vD zAwXQ<3l`I*uqZLd*1zD@XamEmMzMb&=^tuxcf?bL(!D5_c*;WNh`tA>JReN)vm(5;J3T8sjh`5oo|2rBl^Z9N6#5tW=A}jGJ_&r`d(FBi zS2yEz>x<3@;RU)80kJ-@z8bNq$;pX=)RcWSPzdEIR+4gW9k^va*z#+r>YAE7`jL9O z&Li-fmJ=UYkdDr|2bUdZX)o3R3k|CTKLwCM74Zk__f!5$XRWlwLJ>#VKx5rsH_-8_ zKBn4^cB?9AWCRsSsxL1gHZd(WEgATW7zD;F&nJt)r=C=vT3*C2%g;XtA)?oIvU{tN zF&7AP0vriGE%w5MRAyd{KPdmuqK52#R9E~!a{j*|_;M{8f5TeMtas6PG@khTWB<+9 z{J$)~nl@{l-7K-NK9RV0=t$jl!JU)amQ8lvI71&iaIiB2q#9gfqtzPaHR_Eza(z|} z8cpDO)?u`YKtUs41+iM-HT7iXA-VY_W)(L6SMYlmz|vk}1dI54WI{nAz*+zn|9^W7 zL5_`b6&%za7jTgSnxi&Pk>;5jq)0#60-4q<_Qd@Shf=KDA{bPQw#m}D(VII6dFZyqp%}T z>=g#&ZJYqSf0~L=s==i5iT<8RaEERjFdh`~EX4&<4(mha{iwFl@O!q)?+l+fCm@sp zTxf`g|Ax~T&ymkS`=GXA$ilDjefULhz?)gh;t=UMdkXUTRi)XLJ*TqsyMBIp5?%{FqA^8vuSI!TIXT&R8V&c0Z{OlG>tI(o6!~5%I%v6-0~?Fth;8i5 zlI*I373r=*{D^Ir7P3s}h7Pbf|1Yc+l~fCkQv43v@RH#l&Eq%RY5e)!ZCQ|zyKL0x zQK{*vDQUunV5iEZ0xFfh2$_q&KUIhNqVgFzs2rn6X+Q8g@VO`OA}&sRChpej;vTu|3>Dxi$HT(I9WasRxYK? zcnKEiW?~O&X1ER=XuL9)mXELY6PrR`s6d?pMJ|txn|#YeBM-hj#q_6R-tt zDAtltsCN5(0ooyi=qx152HrUr74gvwYcvjI)LP5TK*_Cp+Z?H#?yTuKF3igag`Nmu zh=tKm9Ub-J%a2;g{HT>*eiZZwzFGAMt8MiPb>A&a$!dU|-k4v}#F`0|LX+g4+Jd8r zy=i-tFUgGwRRA;C_QiFGchHIgsCH4$3PUD~a4s7Q9c-Y|Fa<+Gh#w0bAosD9=Sl7_ z@SAX-{GW_<*sLiY!L?FEVo(jhQO{$~=v}P%j;=z+q;l+9*jvQaUkH2-foL%GxO>Z@ zwh9(`T>I_y;Zp;mo09og1r0?d^(S|9EyWsZOtCf|bIIb*XGe}+>wx{8Jsb7{p^6Dm zds5i5YDY{5Xt5A8GM7JPCh5HV0 zn18K?ix|C=mnkN~)D=4TW`OYrs}7P7S4aWkaa~;Ft$5K)D0OXODKsDsar(N@SQ|l- zJAtBE!0g%{n_E*`QdJJ&aX9N!np*d#R0Rb;Nt3raS>hqwp8Ix-ARszI;&3kL`n#KL zNLK{i^@j!ZPv!j(Kr|CSCMjr~c4yPT1UF2HUjUn#wvnt3fAL6G2lO{_96e$fz$8F8 zn`jNiO`6HDZgxMKP^1xAnOacJ&(AM|;v9~k9b8=l&ngF@_z*gXY{S*g4sKxfih}E=OVP`Wdk(&MduF5VR|_anO+XSx0bgyBI%Et zNe%-5fPl)8lvO5shIeT>I&8YwLetpbH1M5-N@2df{}kq5(Jh4yQ|d>iphVUJ1F%*Oo+7lPwLGAXVU@s4!} zz8=l4S$Joz*jJ02;fDfD3+ z8NP?{9Sr!}TYc^cku{3o?M)`ugxce;rwF!3*0-EKc@Av@ z|2ywxsy*UNn~6u`Z&nCadfvPf4azG0+{=?b{0fV$Z|(|icdS`a1|_Y~K~+4B&(KtJ zQ(I?UM_9G)Itz1)8M|RW^xLk7mILO@wcalI+|ny5;8WkLe|pAX6OQ6o6pN3-pBOxR zkK*B(ZZN^Y^XMoP>zSOCfRGSrKwU@^fWDiAs7eQ(3y_XH*WAQB_vQK@KHcuiFY%OK zaH+enls?!oUp5qu77RrJQ}N5o*qQ2j>`Zu>YT5A1R4bU5eX>CdKG`!bQ+!P;oGI*0 zD;-G<%+9*7>b+o)T5)XiCHXY6P1@w6+zx$0Ey#rp<@tf-6Vb&-IEMoxsG6 zq)?T*r7ph(9|SIglm+07mSOuE8LEJ7S2dnD{CUBPKErRLo96F(}A`_#Tex7G(tj?e++7IC!wSp{uJp2t1xVEQe`cPJR#ngHVC| z2P{NIDsRzD4GJO^h68xW!;Ua>}=Q~CCd{(aqbjcrX)4IT-} z8EFZ^dnfBUO5w5#y?9mDD(I{#ZK@Pq{3)O&P)dY^#iq*yK`Tm&>_r8=kZXJ~-R1iY zn-(u{6}b6!pH38ou~zLnw_5olsr-?Kg419#B0G>!(2vFdXNeZMpfh(Okc|L2{Mv`8 z10q;j%3lns{U{GtM@wPPhrX7-AkbD;=^&x-W5ul{kRuCB_hX%onL9d39qfhatdrrs z2WTO4)``sMR*=muyZ*rCvk zaE2M6u&W5FQR?z$M#SK+59tI#JYx=oa=2sbTM)5eiOj!)E%RzPGD-W=z|x$anw6C< zip`1J7oEK)UbiKoIjJ#HBP%5{H5nw2&Lnz%l)X5$98@_*`Rpe~#LqJtL!|tesFW~a z^iJvtj^uspz5A|Ogw*7)I~xZ5l2QI8FXUzJ;b5b?ySv`W12ca!>tH!I8QUrGDf)^() zUvCtJ7ZV-_p|K_a8mNr-tUz@XIjCD()}_UZjWYs8i@U??_u~=M%x> z`x~KtfNz3YDEGb@QWK!B-aJRf)R;--OMie=A~fpp4}X^nuj%|1{dhhe#m8z(=TD9n za;89NE4ru7Oi>R(+^2j*gO|JlyyQ{fC0Ch4`-*!=!hWR6AkCD}`nxHQq~I*a>OUf- z;%m_LzJ*pj)cA#!oa+*>We>uj%+FMZKCxH8tqxV!S*+7l04KGbvVm@ur2 z$n@Ik9i3K?UzXPdJ^EhLy}N3KQ3XUcyR3jXQu{RJBwt<)pDJ7Z(?a|gnH(P`q^#-X z=shx|;R5Z1$shS5kvj4P))joY8CG&94B*(*9h{bf@O=Q^tNym>bL6wb#CSQWUx?;zEv&1R6T$bb~4Jlu`P^Qrsat_98# zhS8H%shCOf+VKf?Fdo~QK^!m7Dee`Zg)F>6VMq)BsIi8Ipe2yEL54AM0j+gixYorE z?&BeijjrUbtw%cTMVHXm@KN578)CS~)IW_H`RpDrpPlzVpB=@{WHZWQti5B9EkV;R zI<{@wwryjNZQJ(D9`CVj+qP}nw(h*&drq7iaU;&JyH>1TmD$x<-I*29QCU^b^UYoP z0?_XP;^WRk@DH2pK7CU<>+&@*vp7vd5YA34QvfHq zg5?%aI9-kL<81A6loC8a})0qe(po7|z#jJJdebYo@`F^^!8}ZY=@}i_mH06z|uw1ku|eaL0A&Xe89k$VsBc2lnO5Sa*c5CWbOHE zuOdVj!ZCYb2@dwF_&b6+XH=Octg-RvmFls$9>N3JobJM%0n6JHjIgsejJPozjqP@S zciZLF3re^vPa+@wOOCs)G+}W+JutmL9rEMlYGwxc@YuM}EDB1q)Y_YKsMT>3El<8WiI;qcGC3NcouxPtAi9Ml5@qOA>dh53QovZ@PidGsTSW8gRefzQ|Z zQ+8l!Yr-%Vl%a`_#$OS%^g_|xLcEx-BKPTt?rU41Yvq+8J2ptRR+_cUX#uTB&2|b^ z?kj#8luYI?;$w9PzaY(0Hpp@__4cfN)+FsST8q^=!t3zs$C%A)>`T3a<+cm^V6YIr zd0W5@(tLm1u@3bI$~PEXmh7#B6%}p0yLE+@nweV{QDFyV+Y69$@%Kp~<9ktHeZ%^s zIRJ&Dd;3z+u!@O?)CK}r0Eb&}+XV=zB=L!x31Q51gaXDe+eRRoPp;KOVLI$xOt@FP1MU7u|d)iDNgAxdoJ{z`27%(7S%sw=8MxU)?L zUzRt&6x9MHuh~lxFp#Bh<^&ZTj>N?sNaMFA$bwq~%GqK4koyD6x^L7|dt;1v1lx6} z8w!Qq*pUW!hA{W#2CVQv9(-z6&7a@v5#4qhd9V%b`CAu2eu zqpF1_UagE769Lf}vBrZKP}6K$pHB%B&)i&s+SWp0k8`(nV3?MS2(Q6$az7%P2vAI5 zO>?$BLF)U=YY=+U?Y9EJ5gOMD1e5$L;a=iYaOcU-U(}b`?l*w?#*rx=Vk!Pofi~^W z*+KRUloV7$#7)Q6#H}6VR&d9JuX_^UwxqYfMs7t6+Pa#Gx~f_k{Bd{pWRZChu7STh z#9o7Z=|EEKc`6!aVxnEhDcErppbqXS?@`+7d(m>V6Q+>(p) z;v?p?j*ZNU&c?;cwF~MRvX8|k8~lNWP9}m11a=A~TlfRel%Oa9@VD6l%FNJZRDS;? z@Pxl<8w%M#^BP8K%d&Z2eo>spWTJ>eh;S%ka)7^#_Kar`j_aUawi(s}u^K|C-E$YMp5%C_}1 zIKe-6a#@xaoP#$IwoMI*lHNX8o!ucz)Xqe4H}>R)uOcC8z`83V82(}bW|kQ{yZ~)QrI=-Osxs+}KNYvipuv3v;UJH5k7YMp;!c^~-E=AoU zd@;rg!>`pEO*q0?L4f)~y&oGbe{DaXv=#Cd$8|^w2bGk~t0o9iS1_=4w}V;P4)~OY z<4?I%sCH^Xa37xpopCXYb!m7=eML4j<}>lp@e=WX$dTZ^sJ9UaRwfeoi7eMr+a3Ut z3c#VwDDe>UtOqw;>S|j)VQ~~XHTFbt4D$$b;nf=$olb_#iO8|vMN=V?+q2sqo^5v~ z;J2u~wL}(S*p{QRIU#3`gK*w!xNEkP2E4Mx4$cKtriv@;OgTy^Dxe~%FJ5h!W>>(# z-k>SDDXO7;`Za|>86_R+@|GaUw{$vYFZ8!bwO$NYuFm-i-d- z6lO~A2;re(*+*2771C7HikzYK?ei>8ee-7*4Att4Vk#uf3b%NapU}KXCh`6oziyaw ztc+fbGwg=2+^4aI#Kk_3xb4xYgJvT?*)NlRyaR$dwKqc810lb_AZGy^AQ7+SL|_SAu1CQ0yXeZekYa*%!{+Dum}aYs)=Mk>?VsBb=9xy{7k3K6 zo#PjC0dE`uT;Ck=L|xdVRZO` z5_Ib%U~4q~=n@qCGcQYG!mTFF7=0l#&!EVf~njA!YP0 zp~K@FYMOVm$&gF_mS7-=@A64%)URlui5UQuY|nw8qAQCZ(L5fGq!qg@Q^V1m8~AIO zMl@|X1zxlJ)TG(I;BzilGC^FrvL`^7S3xq~gaK}J@7X1BoU{6T-;c8E_u-A(e?DC^ z5kWRdB{#viZuc-Sx}fr$l0((iwEGKs`jWj`yb4+i^JEnXpuu6If#pE!yOhQA5O)(f z1F2vAfj}fpf;LyIu(YxUu)eoIow0*;45KfejW^G$S3OfjI-6egRTbc;8I$3UWdgq& z=9%%zp!9dgtTErYw5i2C5HG=nn>Qz5SRIV>e&PeG%ZUEKD=;N$+!uJ}z(kDr6Z{qW zW+(J_CcN~8*#mlm@)5mbBfENbLkRXnTjq-JG_46sWs$l=?#iwLc_EvjAEftAl}k%V z{w4RFF6LVv!mYFgBSTt zN3t$4W;QQ685(L?R!MJz?#v?cZo5PJgfKJ_siC5-upkGo@z<@Dfh^~=;?nX8UBS#4 zmV5bwb3?qeIZm~yDsTpl^i7yrG|w=-b5`muPWDURX}(_z=i-K3W~%(_ZSO5M&iw5p zzJ)Gov>ATEf6YxF0TTS^Xm18AY^t|5Jn$Fg^bp4lpVO;3?9DHw;NV&(hDc6)ARs0= z7r1*{FaT*Mv{w!>tQQUG&lXw#c`_1_r#od1BA|937eWasOY@+%zuTMC0V1{tytF+O zYw4xG4m1IwV&pi&xrw}Mz1`AKH993(y==n4U%~TR&iB@cu$sRl2FxGs5#EFp-Z0w+ z(wT6=J5rV~k-^LSz2A^=O*3FOrCczmqI8!*Zfwc@NWJmpJ-S>RT^1zeM1 zp)y9HedvoWt?_p(xA}ZwBXBj`p|}uS5bwlX<#qNCJ?cD^S*7up8cV|VGrKppZUC4v zW~(Ngk{<>Q3@K(;mo1)EP7g(iQ>rB!!E4r*==i%98j}6tfAnUe1FJeRvXuZcf{?U~ zxZTwH9nCsETz9gNiv6-deqhVT)ca|&z@ffk%KIKmr$&b}#y`a~oN=fZMkH47V_M=;g2+^+8tuku#q_C-oi z2n@Ra{%p0g!tCcxQ!fkbxWZ~qb65O1fY4N0Qt=eH!(%BPfyc4t7`t)fX&iUW801nI zZ4+@C@t2Bl2qfBr^fkUjfY)M1JLVZwyyH5;02d%`YHKtwv-Nj6R zr=1Eg+8$(ycR~V-0Sc*8pUn zub~7)=E#%Q}4dM9aY9nz&C(m(#Z-BE#7^AtzRi0_$Hclox|Be45=ZBy{N-~=)hr!JE$ ziqLl>!Z=}T1f`xV$v=j^^_kuKWs@7JRWT;I6JPu52$9zDYLkmY7tLuB>t~Y4IHSZ2 z{ln@~)x~R5M{(ta9{@+_ft@zJFXj3!?@{N6(N?va5T_mZCjn)Lv0euP9Hw#zJ+YVa zwVFmxgdV{_zK>CQGvnUn16f>Lz~)*z7)bu&V`ZEZ%KXBZONP8}7myT*w;Be`#2W3$ z|6u$4EClAjZd(#QG*Fz=Q1wjM;G8FC+%u(9F;RoQ!0TC#hp0|vBL!}xHm_OUU;(x; zSV4Xhx|~s<$)`!%e9d4bD{;=@^GcZLmw_0W9ayx(bD9&rXtjJi4`OH$803R$=ad|2OL^ z=~;|v=npt2mRGGV4R_4DH$BdR!L}ilGFmO{EiLW{UG}Xw9*PA_k)am_ga}(;qjSKF z7+Yk*Y4(gp&cXgttNL8a+uy~!ozXgdECa+MI`)hpJGXyo@$!-y!q1@H?G4yeg%K7X zP*A=7eTB#8n(?{iP9N7oiN`VeBt>u<+rBqDLI}42fu5um8*Bo70u=oG%^E8hG%`nL zzb$MKM{Wd)uA<|HHWJy7S9dP2{Q11y(*qqIWF(N4@=$kOTtbexaFF@@&y zqT_N@lnEJfJD~jMwjegSWEf;*2s~0WR}3Hi2lO>hx@Bo3SJti+VZkRQM`-??VkC^{oCpnQ7cCw;%c9bcXjUGD3GRh zJJsTV@igbMqci5237K51s45h6WF3se139%~z1X+h$Hm(Mx|^;KC*e1sp*G=AVCadm z|99xtSCSed*Bb!%@2r_z9jn~-SZ=pFq)~9Q9|TFQ4i1HM=rzj33Rl#fT^DNPj^Xhu zM-7Fo8((g#d${v_1ttxWA}`5rVM>C#5-gguZKy!W{(|{;(l)o*)HygpED5fn0$r4B zI2ER%Vxv<+IGi1H99L5qrJ-6AX{Kb^>-9mHNSQQFD69C9TxU?!Mt?Us&vg{)uGPD| zy_MhX^&#}r22!!FoLV*}-u-o>HL@1B6n=hh$|f|pJMi6YV66h&XHkLQ!q*_rMB;-H>AUr_)gm4OeAIoXVVmzh2Y5?&t94CD!&J@R z9H0w0+5t3PRVzb-+P`#r&WBH}!L@n-dbi#p-Z{V8R>d7dTgdT*ztT6Tr4HZ=&h9|x z$_SzM{>J)ZPC%J0HUhS5YGS!71a*X4mcYG9Wm45pj-IU>>@UGV51i5 zNXMAhiy$M+Z1-;OA!xt8URY#h&Sx8Q)Ow6)d{kXfHX? z6cB|W+Q612&C5W%y2IBG-7W~V=X=(d$;UDG+xBj#X*g-GdfI` zNu2n@ML$L{InJE1;r$y=JYHBC^GD~{U0?wfeDEvp z+mT&lKStLR)(&;wD7XC9xQ9ye4~0@{{mIA(MqqhA^4GW+G~cHG7nGH2j$j#tSGY&4 zMo-VvP+R~bqlcnCfm7UU$B*iY+lZ(`lZ~{!seLSA{1nobiyO;bgicV`$hLH4?y5kY zB8Xygvono9(0oyW1iGLINI1=7q+n*Hi+}&Bw^g7g~UhYi3$Q z$<~WcQZ%#kVY;x4I-(`7^%#&LxVZC}3A57kwo%1+()Z4w@+yz21P9W*u=l}MfS z9N&1HM4Psv$3Z*`y7k zDew5F8-iXE_}vV6=g4bXS4G%)5R7Z8M0yk|@oq*6X?EcR$2)pY2<<`WxiHMYT?_S4 zWbA+m|2+6S!F5LEfVf^-Nf7n%*{=Tz2fqV&Mt@z;uD7}{y|);(CC&VHWqo0fB)f|I zeB%Aj?C$lTZ0XC1;ew}#L@t}e_~LSnsQ+DQuMCeR7)5gP6?mLCR=_nt|- zlRkPk+msaNV_{QGUfsek>K+Tzf5E3ejU%(#(FvDVImr68pY<5Ay+*rjfMPzHirkkD z8TfNG7=wBl{oBEeqkPwI91`=0UhVG09Oh(j=<73Z*y0~ILvax~hhMxGDQ!jX+lWnaQ(uwj+c@t0 z$>?y0*d6pAw;*!tP-u5-3O9Ye?fo2+(7(_KQG|H-qiy%dK%G8-R}CO11W7?z$aK3| zn>t@F`>^A)iMtXQ~Lirq%YYG52x$uI|!vhE|vJ1X*r3YftG)Zn6 zH^|v~|F&UNq(Y`B`llWE8t$ri9G_0eLf=AVlqj|v9>>w`U!u~%Hty4~X`P^|s(=5E zf~-dj0AU$e`COO18uSPT#MBE>Tc2`bLZi_t%>Oa-&to^M_A(q3G81bF^yux5v^u{v zxWcYMPyRd0wg$W+;+clRA^u>FhJ(SQ)Dq~Bhy}G`2z_)Gk*zBFrAojMWcFFG!$s_g z7jx1pF*9jQ&uUM(M^ND+fevzxhjXyLVjKEG@!RYrQKqlXiS?UBdEmmR6}^+Rr^1=W zmjpH*%50Hs(x#KoAQIUlbR%!trk~U?`y=mHwWt0{ssFz5LW(gi@mo#iId$_=bQTFlX8 z)382+uvZLipXWyPs@g4ynjz{M&nD16l6T}N=PIpT1EqGJK>Cji>^Ei8H36vW)vyXe zmr%V67^aukMe-pLxMjH`@pV}B5rh3F&24LFyz_ug?f8H_G*Ht=$KXKxs*v}OlI34< z6YgJJ$jAi^uO~{we7{Ds+k~~tjcf>v2mPsu%Vx@Q=Kkixz7RLEmw3KeyZW|(uNI18 zFq5w2tHGV5EAN&$O=V2=@gFK&iJp|~tfXyeS6SLHE6cpXPS?EiiccoqQ>c0uL>7Ht z^`%T|`I^N>(iu$hdWXORzOTz^{|01+pNL!Yn#rxtMS~G6uPxtTFQf8a$_vN>-lu1{ ztYw$_2i}E#KVxDv&=MB?BR1?9-CX=tV?rIyXt6p9qpbU~yY?#$gQe-fnp#TfxNJw| zL&ssa)O&H;yPy|}+_o8uMGcIA>PKGf1TPL?iwUXJShe3|LL18p$qc{~+Q{jaDF*O1 z4kdORo`73EdMn7T(KRYVqFOt4;X9D1B&qCZmpST;nw17f!;-B_0XD+&vIVdNc+D3= zA0>hDahMUVC9M0bVoXf^T-0ajfZcsiv`}OtuhPbLHN)C3Fb6SJCcA-}wr7r9k2xi* z1$pETtvG|r1OruY)c1n2aO>)#umu+Lq!N7U5neBiD5hyz3V7<#5*72LV-p63r+yAu z(Y49t+HvBGCt?x}KN5^bgTU3#2|L6;64Ht7h1ZXt1Go7)ZL2OBtFOHLkXjFg`i{!g z!Yg;ERYT%M`ShC7(bJy`R!QF#%@R}6BJ|Q&P!snykKdFE-Ri6q5f{M5j}3vD4+k|H zrMM1K9CV#n*F<~0s*Pz`%CplhCXUcGmMfUPtu%j{Ek*b+KTzRi=>U#HN+hUKn1W*3 zNc>8jW~W`Y)w+(}T-FV?*3GN-LuI>MXsC#A@n0P2$Y3@}C9(c^9v27wWSC8tZH3l- zK1+2wMO^kE@xzh>xrf6-Q6JK^1MK>d1_dq6q@B;9(0$TD>t(6G9fyKWy;a#^J zzPS%BEK0AmgfCjSbIzMeacI)sho&b)srVol#5}BpZ-pZW=CY;5m-lRwA<=^P2NI~9 z(>Eo;0Vl*;{0tq_qk)muNb%4oZsC0D&qC*cm9nJrkBNZGX85ys=0c^kf*^8EG>YAc zQe1K_;j%}Ly-*Y?wBnpj`81;t$4TT@RI<#byvvebaf&ijrx=9)>) zQ~QOR!A2*M3h!h;E3z74j(wO7yO@G^udKI$j#%*!xeo;qo_P@f3G69m5+By0!q66O zE7w-B%5j*QY-WrThSeF)lUr*UZPEVaDHc_R!`*+OC9a>&!{-v<3&iMu1il0_4uV|T z!|d;{%f5}PK2&huXh`b>3ipJbw}S-^0~NIv9IAMT>~LEkUyK`&yBU~Ra~%EhQ|?k* z?~3Vm!M(={>e>D|?Lm??PEe5Bb-vfdd^YZeJm2*6q+FRV?*6Ng+1+UOPer#ZWT`sxHEs z0vq}g%_lsEInQhqvH)k6q#}U{KuWQ(9sSbbak2Wpw_{sZ=N+~w!AIPOv&=%T7}h<3DSRt3*rN@TtSwFo$LDrgRw z0RMr0SS?)j$d6Y!Vc}GXT*bLioOIzkne%5(XWi2{^1=aGz>sL(a5?tPhJr7yWsAM2 zlR?2=M-hf(Yd6noiPPGkB25QvWz&ZDMsZG^UzVD+p{Dx{WQn8Wftylgi$0x5{|FUq zGh8L3#rIrv(4F+}#K+vxg1BI3oTUV*5Eob5=BcvFf;AA(cRY9E4C;xxI_|EHV~w~l z|KZbsrAE%DxXe06tMAk=GlPNo3~m_6CeVafscCesBc!vs!y+OUQR#`u;5osuSP?Gh z7_hOAt%jj;(hzJw6^t1%qUv_BE7fYAhIO3UkTTYbSNSjGnech*JzX(Ztr4W5AmcBT z&54fdO*ulYH+@%+#vL_WYV%leey9S!@>4N$gc$HDGvL;}gEg^cMBVfQ{oLbVAZp)y zcr)tq`D?UJ1@>!77w7w}qjutvmah=kvW4m@!QRQ8c}=sC!ouPs)%Kt5Z*6I*hv#$R z=dj*GAA}09MAlOrDJru<1ys$h2}w2y@O`|!SQ1=-16CRafz4)CVR^88ZJac;?D%pq zOysi7(H^l6i3+H^enxM%V@_?qTg>*%+E{u}Z6Y2d1d)?aN~UG((j++@4ZqWI)6WX( z3%bo|=rp?YVJKvwATgo8W-<9P;n7?Wvc5@CX`^aVvs+5^3X2)nlr{}hSi=B!>UzPa=#Igw zke)eN6|YePQfNgKNs4j5q_ie141_|S|Ee%igc?07k9pSaJA(3Rsj_0n*;#ka+daf2`2tkYQ6r?_B~&7!_i&PO`;poaPw6P) ziU7uoqPM&y5Wp=4YHv27C zViMBdz8#t2!gjoXpm9`aw2HGg#b9k?saWe3UfZQ`?v-xKC%Hb8d2RE=)|o%M*|l?R zE4WThdB}y;T&5{t>69BugnW~E3-wUO(j8!vrdQ;Ea10pkCTHTq&?J{M1g)hzaqS$n zTTYFwa+ZocOTWsb>8%!=P`K|!OG0}8o_96vyOSNm2qRGtDcW)GrUb(*vMg%9(^ zF~EoOgk|KuEKI}WBZ@SHvx+p`J-N7FkYh7sUC5mE#G0)Iq>D}hBhGAGBS0( zK(Et)}jkdHSky@fRv57OjYm2uHG40IXwJ z&v`%~w3mgVkV`HtG2r-mug_z&bdngScy6;cU-@Gq`EaHv1d;uM}99go86fjGBIx>Nf1gXp=GaF*btk^WN}V2vO;X^doDI z!qii&jD<9M)G2_iot%M41Q<~cF#Uok5nS`R*FVIptgdr?S0$O^;;Z0|#UGAo!!4gr zI9!(S<>ZY&36akpU(8uhRVUR$^65Q=`O=m%sy=A6xcg`s-V~f{Y2DOaD-XcFAisEE z4BW$0W3Cr(%EVXC2QUBr3;~WOOxHzkX#6BqR(Kwb!SbJ$LIXr0@@)dNfC_(D;&jF) z`8eDWZ7EX$C2t&I7pr|H#s&F<6#|c`vkcFt!ghF~HDvd=bC57lFxlIshHnYrnC)ia zKZamPn2Wi)rgO0})@i5@*jA!X<8Mvy1x9^IpiMC*F)&c%@_!!qmLY~-O}i5+X$4Fd zpIr2e#r`l=qdVd?wj*ggI$YsFwRc=9<=v+(Mji=xkSob)pxlpN6q{%s*ED*U;2R zzJx!v!wK;z6BbYC7ik*r>6o=UoWz-W&D3oJDAG9-e~05+*)#vefOyirhzQ37bNFY0 z%0B28+k=Z_M{fd~u%}y=n}Cuh=a^jbaGI{!u5%4{!`z+vv;wPD-EVqRMV3-0!)?uq zO;H{1gtE;ytcc3yJWFaZZ4%tTI($TxeBHldEdFX7dFESZn^V4apwPFd#Wl+4h2Blb z>n_}8u1V^Bdcm)DBBV?m9O0YR6OrKlN8w#6N*2AXVV?0@P|DXdl#Z76>y~n`_NRE` z6lGmjC=%M9lJf*DOm0#4)@j)}Vxf zKO;}{xu-xVuXCYDxF+s5f#P33B6^ASa^7&plfgEs%uueH)c*Jngnm`D{$FENW|D^C=m(QTCW$Ih+lX!&TLbfI-SS+?>AdHpDBANd&1(L7`Z@|NJ%{EXdF+W{Kl~M>LXCZF z;|if2l%4QHV?EG<6ppiEZL{+4Zbr`KWlHL(XJ`>^U77)CM;^ zJV9er#7kqad#J>VUCVhSP$ui=;!E(LB~|yex97&^XMbk8-e`?CwkyJwr*>YR;!Nc< zWso)K662&UyUEMQVB8ZV&8xMq*G&(vmO!QO!aH7#Cz9^+r0ee0v)3+#+vG9LSCQ2P zL#3-}KNH&4^3Cd(K#r`{5Q5_VQs5-NLX9=4;RsaaYiqP%NNj8>5M+gkBv?TpNrLJq z>^ocmH7YvCH-^dy&&j;kVVpE1csuZ|W;qr!;avays~+La7sWg_Qd)HElu7UZv5L-Q zbj+eOgf^7ATZn)70BWBzankU2Ylud~sthr3+2AT=lIV2iz_lhCaSb>TjtT|$lYjg) ztTq~S!q0fH$1v*v=IkV2WHwUtkqu&6l&mbw=4`WNTkX{Z|8 z0+Pd`VqIlKa)_E*PVadoN8DBe=C_qCjH2|5F|sx$?kR7y*>2T7s)tiofoO2^^s~oY zUT6PPh=Ze$?|Bh(&z9cjhaKVo_naW&Ev{IZ=@1^=3Z6(KX|7mMW+#BuG!8a^k>l6K z&g4dZt$$eLKm(twe&Y2q-T&Ol@04nUz41Oysl2AL_7IP|Z42-X@^AIdnb`(?Bgg7b zaJOOH@cIkxKUZLi1%X`QmuQOo9D*2Yu?w%91B8R7Fh$0G;_>SH9)V5r>adxH=y-^= zcy-peu}n~%qz{WQ=WDb>DD@P!Aq=78))ds{Y(3)6Jf(%vLGO##it*cI=RGiMDR?;! zy5$9Hc$Am_Wf(S6rA`8s-;&u|as8+!P9$hle6_ra3>SAqS#%H?60>v+_yj)V%<26+ zsUF?vas8v0M?L_ll+i-L1#V=SMX4~MA5|Hey;^0P0hJn_HNKoTc0ew#m@am&db;ap zCdXzqn|S_3h1xvTH2gzniO^tu}N-avud83C3nl#kuO zMFynYE$M06Huj8-7h2);Aaze2lM*DFvYXb%vV8-kHT$5I?NTCts_U77Juq-<7#Z8a z?(FMzbs{`Y1SJ%evS7h0PN>yy>;F?}lc%FuDz*dn9Qqi)ynfsgy5u~D6Fy9*yOsMX ziC6dXgD42%f|%V2?*4okP0OB^;^~4y+~$aXL>^b8PP4<62^+vhyh_N-l_yr;#gaN| z6z6dU9zXwb)QawrIT;m%y zc=loZ>4G&UG@wP39=*~B8gdX`SB3caAWc=4!>i#k*>s{#-fi3cS)^Kc;w!(ed1;x1 zfkr<;6?O%TG%3uH*bU$I=xN}ipNegc*=!p1co}3-6gH4~+nKYaZ8}C1DvY2Yo*{Y4 z?~CgUc2VXxCql%JmK=iC_!@!d4VN(_2w-rxZ)zF9W~D2Gz9I08EJw}4>($D|sCtWkru)uhV#_z3E=jDV>I_`cvfe^t@?;tqHiT|E z$hpN$^~+vr%wOZ1YWU*u7{cJio!nk< zgc5ZHKPS9dOlT5_L7DF?W=y}8fR}}Bu^LAOTENi;uZ@|w8ZWDP`CLdMfJ;6D2xnB9 zYxrV!Dx+5A$bFda&@bOP2-GuHQN+5pr@ldPXUZdRzWfV3LQ%{#1SBj(ymBLLOhbh* za_e{E<$}z8E3P_Plx7gq>~%;DIxbv|FxkgfN&^cCu|x^816v&1cBY*JLs&ciKZ%tq zxAN)&`o@=4tgr%a zq;Fpz7%^9jUR+6;*FGgzT_8RIgw`~#Zb7ub8z5VT3MD5;i2Cp7HuyVigHX0!+d(@|8f&1}=tq~Qm-wh3lI zT1!G>oo7qlCcEP$a`NrSXf>q${7pbqhI*pkGMO&lsiAEP=qk-FeFi6ZZIXGK18PW+ zVW%15ecS^_)8nvQSpx;oKZNp=iyAMQLzT-h#0S_IQ&IrPuD;z$4!No7TQ9jQfiU}T zJdRGM-Sv*WFkg$LUbLLO8rQwI91puGjmkQmPed~G)@u!hWY3ng2S55^yt8p_;jj9=(aq)IrAuJNn_3-IP1Fp|^O z`&vipZC9nSb~6Qd8V`~jq)Lg~$Apb`t^9L@029`~q`SrvrYuVu?wC=u(GJZhWmT3I zC^`+FK$}9R0&B{7fp}E~l&bZjPkw?uaUA`mdOT(6_3XegAOo3m^xg<4)Vb6InV^(4 zIK>L}bDjy9k-E5l5Z&h|sK{u@XhdYsDH6QZ@UuYx5ROJ_1z=FAeb7$mgCX!byBJE<|< zTJsraAQuLn_%(9`9f(k20RG-B2>1#IFUBB;0(^LdjDNVtOsPx>=?#}l;UVRSM%`b8 z1h}J6y!;UrN*#%<+3$Cq(%Ab%*r#~r#tapcji0xj4_9(8&uwwZ`8YVi~Eqz(Y zpYE5;!Isv7RHV}h4a%JC6_wT0P4kd)7F4jwu)5`{s( z5T7TO7~LDZ#2?UQk~@R(q(C*>ZX84`fxn~F1y7qW8{--~$D0LDyP4Yy3UHmvTM`%* zv(mI7<^ucb$3@B%$pbogMBfU!3FMFAef4nxwUq5rp}Q&sWd$6{Gr|L8{FcE&M!G3 zzaTH zW_EX}HDT7ggS6nky>>x+UIBjXpTxec(QY+Lz1Q82UYE#KSH!R8st@#TT0Mf-o8=W$8KB*E-8c}?$8J=9r%YH{(#+CH z8sUuXI(bn&xlzAsNJe?)vv~@6cC`mZakk;Vy8liNqy=*;t7K{9myJH8%fFgbqOX8- zO3+(3;FQ>_zqWVa_{g26-ssJ_NfAc^Lx-OqhZJYb_D2JqENUkcuiB{R)~L0QH``^? zZQMtIUHGdGMWy8;&twkz3PpNGun^T<*m8WptuPP~jtJOKqdFv%`E zf)z!=h##(#pidE)@%32@KU(RU0S)>9rPVQXSVvQ!LJpmTJ8%qkst;VsWk)bG(RDZXb^zgY-5Eqk&Uce%K5q?M#N}uw&yHg_IxA zq53xm^%M_4o>NeQFHr9f6SgWfwhBPHxdQ#FQEVFdlHSckx)o_+{Szt?D|9m z9}}9$B2hv5YxC~?-Ykmy6&I{seENYtb1*=Xw@2_ZOd5Ko9VK~cW3Djc*}2y^rHZ76 zr(%riNy5woUCo^uGP0|u7pdQrP|P}8?3oL5q?sdIHPrB4@{~+M$iiYxzxmO7KrWen zNaF6e%a10h38exXqzn_ftDlhf0@+KFf)^Jw*DxF=_9}tTlesKqNsG7Qr)u}Miso@T z9P)sBi9T&--|CvA-54ny&7YoMy%Yaociav^ru66LqcLJ5Z)(jC56{l zFwHKKkj`!8eu_JHcMfNej5GNWd{pALaU-U$D&Hly#dAcC9o{X=B~#(!{$#|h`j3XN z(^VNFyv7=Go}nT`U8}numKVO}j;K;a(Ia#o@z1{FyOEaMj@9daOiX2`C7KSQ77*M! zj>y&VqrfPzdKXCwP3>51@5xq{>R2;01EW9G0ly^zy?}nbegtgtB%}Zs&{veX1n;S_ zLD<=ZZF8fy??JLeuY@L#!{9t%MlXE2uoY;W3Z`XEjFn&yTQyETQM$`@Kn8Dp(B4np z824q57QJ*B;#Apr<#@i%7`Gd;P8$4+&cV^mjAi&VaVYeTw|;a(did9>O-%QUnI5T+ z)@kett!5E-^5Ckn9imOAu|=ndDf24tTBKJ9<>2dGksN)Dh4CFKSKXTwGp-+~wcTN> zXI)FqBk@HwKRCIxZd63Wz&OK6A2IfDuSA@7%j;cxe3;mK%)l9-I4kHGXPbWdQJaM; zh`VRhU@H`{Ar^(eH$y7cfDkdtWk$$P$ssKrd!z>r6ne>|*HrKcb4Gi^+da2pKq;{P(2b ze?H>W5+>HJCe9W{2DI{q))o#f|LbBA6DK1_3wvifM<^z?U-L=?^rE&#cE%RAW(4%I z21ZJDHU_r;MiZt-*NaKNBw`}@PAzS-?+#b*!(*A|KfgY12ZQAPPYHn780^^hti_u{JjHO z77j)NMppLU10yqs4gtNSvw^jRk)W-awFv?3Z+$^0Ba`2_v$Hc0(Eq2^{|K~9%)gSb zfxU!@g_*fC6gwmPZ^v*pu~8%7#1x)I7+YPLHzwcxCUE_NGhbk*>kqj&mRTv_Vyof~fv3k>c5WI*xubFzP1j zlB1o;d9O|H{@JT_>$d1IfZf7GiDe61e0GP;UMOr^2p7UU7Z1H&MC7jK+wVEmQOWM} zlrY_5;SS0YZ4P%Fm4ajlIKBScaETI)oBPHZjhD+Q>rqZN{DP8YLT*kKUEnQ68dQ^) zs3N@ZVWHjPvMg)C@^8PiCJ)awl%#yzz78FAWZg7qOB9(|n+1*uDIuP5TfpWL;0x%U zM5NHPIcZs-SpY9Y!lzA`!lj`qD`9$hU|9ht!x%bVrXfEx6{e4{m|aI^;YoS{bzr1q z6+z)j-df^>0169#GTT^w7Ko|Nj52LYzUbdL9(Q*0ph{4=@FI{!Q22RLop4qJXE8HP zVghNXnG%JfA-POW^eEGpN3gVhRO7J0j1jSmvOc!JiOP1^(b1vYsTQyv{0bFvK zFr?&ESJL)XqpadANV-rnSNB9!NcYEJ3yXEUg+N5huYbIBc?AnBP)|mFPQZn{`#D(SR2CVsu8osi|5@mQt z_g!M;WvEvV4B>I;WpU##4PQ3yrIcR^lQa_-ic=F7BCFI6PdY2Na=Wy+bu$X4W{WMA z8%=FG*`(0(pjTj*L(T(TxU!aqvTtzA<}(d(^+O_Da8@jw>!Z2=iku^H6_do}&PlRz ziFN)>JP?YJ6;PmGoB|a7{DN8CLqL)O~f(v06s|q~C3Y1(0&Q$k5f;#>Qh1oAZ_E}mxU+jLJ;7*^2QmX{vMiqZB9!k@^&g3X4?=M?a zTi3Y+`1h>Z<;anhtXw7=Q(!$7%-}F2?2PI-#JurUc0zQX(*84{Oo8N5(44W^pZfn) z_7y;JCI8k)a3?{6yA2Qq88i^w-6y!aTX2V9AwY0<3GVI$Cs=R|?(XtUcK@=QeXm}9 zx2AgTocrs()7`ggrp`ItZQpun-wq>e&T>}n4@ln1vAU{L)2E8f-u-zhyqVG zYo@=O*@IwLy}^e%EoaFoLg;i@DNO9pMb1v1ZZ5h!2koMU_9ODnwo|fL*7V^8HSrnI z^{g4qNPhQ}-?lC_3NMX_)EhVc(;YMT`9ix0~ zXP>*>{+68mwe7%4t{>RmrmKGJBbSX0(d=91T< ze3H{5ca~b%@Nx*t}%@1I_Urospl0>*dg$erkG@*lr{54NG+HZUEq(xP6+Cq2eV6&0OVu0`>oG#Kcr~A(TQJ)pE0kq zkgYgKPu5zicgtms)VPgDJ z{C2+w+rGgLf6*Pv$_w@DoX~ks!45`x_d2iMAU6BF*qGwyxOX0#FTnEMofO9(jqp;R z_`>tIfh^3vRU)sC=3dbn$7=EmtGx%igNr$+xd&LMzUqmw^nF7E_VkH}i;C@ZBLoG% zK-jGz(8PulOG1~nk6f22vX`QdpO|3Oshbi~B+M-Alu%FYeLS{jcxVKxTsBVzLl!|= zG(TT9-*1i$0vMXfsO7I$(2cIlGlhk#jugIoB8O~MZtq>RRZx7ZTX-wjpEBb1&K^Jc zAS`y84&Bt=Qn@*&Fa66vleI4y7a&#~moVrgIE_8ag=zhb?5ZnQsy%LVH+PRe-(HWA z_#uqxTm*8++hwb=K=k4yoE=I)^&Aqfx#bSbkbfyN;q>&0)?o{BfyVpYR~ByX?@&#@ z_8vvFK92>z7xfvfWXhbNr^1^7)!^}3bG(OUe)Ho*=@1l0lK?PNo7K==A5xu_?_{=q?T#(1-NLcUI{!Rb!sJ3L+imN3b&cWC<*Tb37yjiIW4s(cK8(UlUp6%t2prNocZxcR@FDJEyC>Ir zdPE%CgOofPTwARYxc%@Bajf-aAm9jbZIE9Yavd%Oz}@9~O>PzLs-#C`Lx}0Ji-0kF z4ny`$N-`>wLjTnSca1VwkSSWNpS2$>LDMWjSb=9N+yu9|sZnSnc&o$bh`YN&c4`*9 zwjoYeXKNbGpt3nxxcB@Gg&*B>o7|u|R6RiUW(R&PW5%BjUp*W1k{}F2DBv@Svh>3w zzJ9l=)NwUQmRJP#nB1J8HuryJuwqxxW`JemI@yWOKAiUiw zZ7M;hHRfz-Oda&&zN6hKj=1Q_Vs5NU!Q*wnx9})ryvl8G3rEaS=UMFO9F#g@uK z-yduZ6hGDWe+r+#VD}1rjrNp45-B5jGf8AbKrU1po~5^2kj3#Ekoxg_M1Uh-_>V(LT71D~Z7NV+nAW1D(&O9G5C7@tMJR4mI#0}?Cw z%!q6;cPA14xDbC=E&Q|Zlh1*S>#2n$51{qwb$H9ZN`-Nks;R5f!9}wUPy3R$?w$5g ze0$S#oy(zwi}PVk+91TwxxGbYY8;j7dPaSXpj#jH{#0TqhRE3M>U&qvc6n=~_5RAL zwjY@9*dTxti~mioE$ld}y`9W~R>qrP`(Bo)_%UwEMuS{DegoRF$WQ7YaKc?me^u9r z*@%3Dzn`XGr{6I;Haa|7kZ8I7^X)4Nm7i=(kyNq#265ps4ByQ(^8t24KJTDx`Bo$0 zS}J`xaZmbSmNklf*#*^vLBdyp=t5f23FHB*Trdk?^$d9u4oD8fTi>FQenu^bFbvSd z4|rLVj1P~ux!p-ir`hmn^`#>0%I2me0^5+nO)xF}t)V9Wy_5H2wdBWv>#aKW4fSt3 z+toiovHWxvw~rXIa-ReeM^ML7ZLCzh^O2;{IYg<9O!8C+yEkIwNfui<1wYt67Y~0# za1kNo2tasUjVD)vo$Ztq{Pn}8^2Cttye_!ucuVJ}g5n~6F@4pn6kcn?hwE~R#uf0} zW9jyUv9)k_3NOqZ&Xwp!j$orB8t#tIYg$+&tNoZ|h>AE=uxDlhIXRs>zf$NA>|~$d zH^zPW2qKRBs98n3HQ(xCW{2+8VLGeaAnL!k62t656v7uoq=bARk01-g3S{xe{5P1B z0Xg-@pp8h@vS%C``H0EU^SR!FDWX}7nE3>e*ZtyKtnSwjw+DrM*Nr9D2}ZdzM3{KA z({C?2LXxBcZx=@$&l*#F(s;Tb^X`)u4jF4?mMApPTYc8gmOY}pMk}?p8W{?phA=&k z8c9Np@eybk$qeutyYPMU(g7FH8hv)6!w?Zi%jiWu0e}CE!goD7vj<^8*mkp3JhX>w zKV5cwWCBz;v|xXDVZnf`4gpFFmRG+psKo#-Qepk#6$&qIe#Dkkb%b{^Rz}R#g^YM- z=X9Lnbl`h;vA%$7TW=rs<$X2Qh3NjpvffD z@+!v?{@45enuu}gSw(=vEVoW!^r>7~egb=0RYD`6qJY_NW~BvW?d%rg{4~9JJRG(?#4p7_m0&ZyOB* z03R$@7P~#3xCvIugBo=>I+WGeET>=N>F4G89H?1*Zq_uE6mvh5B^{^&WZ_xkC-A4(2bAASW|x z=G&4LB>-b>u_=EUb#!BNQ1m@n3YiD_n4p{xvykWcC!Bb&KBB9Rm3JB9rzETu$49n0 zf+JM~i`(4Qb8DTj*)K^kcB_#QbMg(k+-DXSlAY`irnbXx`Wd-vu7ZXH2zsU5e>`ps zuaAd0p9XBJMRA(&(MiT5rPyq={BU=EuFm@bX zcK$=n>vip-+ZnO?5dsQZMbym5U;sPxXXZqJ|6@&Ou~H-r_IfyH!TF|2xP}d8btrhe zOG{i1aW13ja`MQF2uk{7aQUH&g0}+#7Gx$ z@8tiHYzPcVWESL3un`@?-S56eb%zfy?ZlVp%rs@$`Quai-%l$tegPE;=})y3+0r6y z@3yjp_&))#)>V5Gr_T>c=q1s{hy?ES+wNzMd|F(+H_SlW)tvme6IYAp{gIN*3(mH5#&{=QnX{th0Q`=z21+APD_HH8EfD!_J*Q2GV+{D1#tlgJBO~*3}CCT1#%B&-5sr*!|rPPP5j_ z&}wMRyUvXBGR&BDdSq=Vs4>b9+TIYgEHO;?E>#@V*;!tDT8DErOc1*+5hSPJP_brHS+}aQ}S}_xzRs;V}TQJms9s?OADAO%>BR+hIK+DaKn?(cb-F) zQ=>0w**&;*H~)3lSvuJ#!bjHr`R)^azskF0vJ&zXau!6xk1X+!WCtU9jC^HPkhlj* zGU(Miskd#gms1I*8a5Yi5-{jy(CKE-=-%KfsM#Z#WgN%A-dmC==qgk9qP4{8P5Ul`*5Kea*IGuO{mcOZQ0d%D8gOf5Oi2 z5b2L(9baacTeXYqqaaLHEX*I@bDxG8c&tX(ON}y`v2afLR<`An<{$rN888>gU0>u; zC@Kvt@20DYTFIxejbJ}%NAk}O{iE6c-A@1Q(EoPKpB?oV+2bGm_=n=b{%7331P>q! zM8#p^WaA_Qf*=wE5C~%ZP4R#T5&sfAxFMl`5j-Gz*k1*Ye=8emWIz^3@BK&d_@#^d z5<(;(g2~?$4{peX|0*6J_P;3}kX(OPJpKUwUH$(k9uP0}e-saPF35BEe?B#>U=%kM z(RhB<`q=2)SSJ!RNrIRKEtr0^z=UKylr(WRp%;XRvuMam-~D`HJ_lY?G7(@CLME>b z7euW`@viWTHSYFQvV{%otPGHW7+qP_b%1XX5&Xk`F(o*(Xl%|vM=$)(qs{$%)u*7BZa)}FVLI4eljTY zH(_2*U3OY;-CQv5odvJniRC=*)cgHR;jF7kzNGb=OyT56K1}-5?;e5QkQ(eKVqlar zP!mhHsr7?BHb7CsLVV zTc7c8?gXt_hb+)gQXFED1fQ5|ArK7Pgi|9?ItuRyntPWz??w#d4{!c1zsc4J7@S&p z`>h<|++77(YM09hglS6rl?|-57gg!eWZhj-$dlq6gVr;r{gt>$#ijn^y@p3z$=bFC z;Z(YD^J2-|oMX3mgy$og5w9zn>&5}&l4hmyd}GN@?WCUdT$q&?Th#(5MYDCc-M26_ z>-y6LP>nT%&61WLX`=~o)wJbj4iFC4kuBf6Td|^rl|?(mOJRHyHBYhaf_eM}SIQAs zb=bh3(n2O@Q^b&*q&-b|oWPJXXOhLc1l}wijibSirIA*~v}bsZdB*!8zDX*gyJ`{9 zzVIl7=(u_8B%h>6%~Blk60AT+_Z_7@Qm%v*ye63bL4QF4WH@VE6-`XZPtAfZ|Ltu8vMLaYoG*Rvb`QM zW)YT>SX$j*;YZYwt=nABr)c(AZyxo&ztu$KMoB=YzM13=;|m!R@5_QC-q( zR1F0|mSVQ&PaZO8Y>XXJ40p%AGfE|=?(f}V;K)4yToHPak5!sV(9rS@rGJca9t668 z!0TU&nN6NYm#1^Kh+jUB^sFS`fIOttPjEeyZLeuOh{y9Tvj%4g51i9(%Xu8FooRR@ zKU{>Rrh$yhcUdFc7{Y`z@lGEJu~sZd?_a+~+Jlxnbv)P}_vDTDTN*;&fj!~`!o1RN zrE0?X_ToJenzV25PTQ-FF0&9{xN$k?WwV0lkxz9f4T_8^5vpRmFJwMmA#IrjBpr?h zp2)9gOxcR$xV7{C{6xXhZm`{Eke$42Oscv0gh>9zA~wo+Q>9bM^;13V_sPYVN4v+| z(~f1^;prFYhFKHx0+of=A`?^nPb!yCh}!9`wr5kt_eZ_aJ34l@AC;Vsy~~blN%N0d zC$pF7w=j>7(Z|wgFI+=RrwO=P2RlweCtvAx4cDr7 zWn1ZVH7K8TV;&1wW=tP(^o?+2{`^JT$li1Qy?xB~1SJ{s{QB4W@t>Le-!&DG<&GGW z;VfV!RR)<2R$gV5!-6)23y3vd@SX{R6maQqdisOvm|ap^JMLI?@WQKXRwobeCw*!C zo@F!-sQcxi?#X?y+_1fLU@pVkGMT?mW?ovsE`)ju*2R>#-D@u_Tjvx!MBx z$^yAMX&jeiBT`;wkB5d-Bny|uWH#^sNzO)GoXJogH+P+urMp-@2Zwc{YE`brnmIu7 z=)oW;_hCZC+{oN~^lNGzkz~9^kyGpxZ7+3rK;$5U3}CcsLCk1V6S<1SuEJsF#f;mG z#ti<9S;7H>J-1d6b2DJ<%TFoSye2BV#+J#%cy;+pG!8I7EOYUAe$gdRQm0T>b-&i> zm{k|g@cOoM+RZdVF~DRu!v3Ak;e>G;J^*{&MZ7$*UX9eOeP*S%NX#%TxvHPGqqU=8 zAPq>!anrDQ09`a7rYbxck_<7FvCe}MH@V6L)!3KwjDCCCa+gPne)B`uoh^AY#oLj zR>Qsmk*W(~hUVU1nc-IBA5Bq}P-P-09wp{CWmP zk&CS-Mq1vaQ;ho#y?fwjrl-G7rp}$m9n@xmqI;OP3}F0T@{Yb1_Bkp&v%3b#)6d^= zeayM~6xI!I2ZmUGnjMdei#RyGJ0QuY^2xr%4RJ2%#%x}+`Nrgl+`4aH-|PX7xb^EM zIPN(aZ1?=Ob97Sbim$ZKlZRg9+R^r*Ixd!7Yd#n-CN`vqg#7`YvBqBV8ryI1RMo{BH?>?eh4q>@A z{`Kl6lk&a@lm0aeYc>a#IQ@DveC`cxrnUQN;7R@K%Hwg|h}Gy&B=ia*i)X+Ud1s0i8feU2_(^poKA^c~&6@S;Tsm%++>=E&Q+1ikZTK~lu!2eg7&1;|qW1r-d0dDAhC zgTfrbfuS>)^qVc6L}J7K{qlV_*+p2*ALpS`lPJa)7%@&y$yy^5-NMp)HLJwzuzJPr zR!YZp=HI;>#%o+c*oq?`9}A$7WmKot;_zOatpX036=;E3Epj1$ z7wvlNJOsUU%9tR(;>k&$`5BowdMVaEw58%$1l977@st*Ve8;+YdTA_w-0BXOe5V^* zQ*qcd$9ei_0$>uIrfb&$bg+>&0v^G|JPiY$vJBOaogYWfiK@h_U@_CS%*K4lNx5tGq8z6vWe9ndxUv_EMB=2sHnBYNll(EIA{FLjbr5=sV*u z$q1oGBNB4rRp$=G;LCCjqpiUuL4#wyy+G;Ck>jQi$GvkX;7*lWGUNNmc;akqGR06E z`8pAfB)K!QEJDVP6%KZ2VzKutTawPI+88RIJ;sp#{aIimiQqo_^%E4b6!8PR-_*K%>uEW#X4b?kZ%C z8RU~io9}l&R;ti@LHC_1e6wtlt;E5MnR%)!17{0 z$n=D{tD9$-g<-di#kJBjG>u^a*;L=~B zM9`UGKVfNRcFuO3BsZR!S=7zcwt;utaJ)8s~>j4y}S-rFGi2V67uYVO)?3Du6n(|-GI z;Fv+aj&*I2A!?Oj*r%2%f&QV63$mXy4pDNcl9jSX)oh4Y1+uW4kbCf>pCz+vXd1=s z5T7Mp61oEyFqed7eeu1XLsrl3D-ScDVOfCUco&MNn0Ee`D7r>~%2(}o5_d1L?+wV2 zXsHH{py4c4>B{EZWghYp`#z*cY)h2I(5ipzCi=1VmNxg2Q!h$a-J*LH=+$^`=@k0rKij#GzVTCprrysm$u2Yy-2D&z z8%j=jEak`AP?w*ua?#{m#DFhQ+Gy0!n1WK7ybvIQ+kRm z9WvzvFdop!DhvciYAJaECLDoR33&Di0qZOtrrF^}i+IvCMrE#YV#QD&of)RC>!UiBFXOVs z<2V!zTtsPimR_^%roTXIWYWI~tQ(uXsF95C#_uG5Lh?Ii(GZPL0(iqk;)4C##U<(n zlqWRHCXa??Q=G={M-Jn=AB6L@J#S8WLxRvBvMH5Xuw9q3us0%1UvOH_H#kqubI6v8 z5eAbUMK8$k)<(0|Qj2#@!ZEeVaY|J2LZZa)8A!lIj+Nd#giMy3K zf5ZOF_4mAN96-+B@pq;gWUM{^4K^)5cm7v@4?2w z{y)TVL+ti{i-WWkhyy|b|MmMpFmB*KFisW-as68y2+~-;W1OrIv;W`YfUK;*zkFvW z2Yra$-rg#iJK!yb?CnrDh{~hw@{02uS$bkD}Gys9DY>-(T)YPK#V#xmw DPb?pe literal 0 HcmV?d00001 diff --git a/map.sketch b/map.sketch index 99607261877ad3e0e868bfb82a69a9a764937bcc..69cd0446fc6800b235d10dece6699f42d39d6581 100644 GIT binary patch literal 120935 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 z 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%0D;-+ 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 literal 118784 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%0D)%w;F5|s^P5AZEbpVO%Swq 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 diff --git a/map.svg b/map.svg index c81df7b..cbba81f 100644 --- a/map.svg +++ b/map.svg @@ -1,312 +1,264 @@ - - - map - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + Artboard + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - 4.422 - Computational - Linguistics Lab + + + 4.422 + Computational + Linguistics Lab - - 4.610A + + 4.110 + Neurolinguistics + Lab + + + 4.108 + CoCoScil Lab - 4.426 + 4.426 - 4.428 + 4.428 - 4.430 + 4.430 - 4.432 + 4.432 - 4.702 + 4.702 - 4.704 + 4.704 - 4.706 + 4.706 - 4.708 + 4.708 - 4.712 + 4.712 - 4.714 + 4.714 - 4.718 + 4.718 - 4.720 + 4.720 - 4.724 + 4.724 - 4.726 + 4.726 - 4.728 + 4.728 - 4.730 + 4.730 - 4.732 + 4.732 - 4.734 + 4.734 - 4.736 + 4.736 - 4.738 + 4.738 - 4.618 + 4.618 - 4.620 + 4.620 - 4.622 + 4.622 - 4.624 + 4.624 - 4.626 + 4.626 - 4.740 - CILLA + 4.740 + CILLA - 4.434 - Syntax & Semantics - Computer Lab + 4.434 + Syntax & Semantics + Computer Lab - 4.710 - Syntax & Semantics - Meeting Room + 4.710 + Syntax & Semantics + Meeting Room - 4.716 - Documentary Lab + 4.716 + Documentary Lab - 4.304C + 4.304C - 4.304D - - - 4.304 - Department of Linguistics + 4.304D - - 4.722 - Phonetics Lab + + 4.722 + Sound Lab - 4.722B - Recording - Booth + 4.722B + Recording + Booth - 4.722A - Recording - Control - Room + 4.722A + Recording + Control + Room - - Front Desk + + Front Desk (FD) - - - {{4.730}} - {{4.732}} - {{4.734}} - {{4.736}} - {{4.738}} - - - {{4.618}} - {{4.620}} - {{4.622}} - {{4.624}} - {{4.626}} - - - {{4.304}} - {{4.304C}} - {{4.304D}} - - - 4.730 - 4.732 - 4.734 - 4.736 - 4.738 - - - 4.618 - 4.620 - 4.622 - 4.624 - 4.626 - - - Front Desk - 4.304C - 4.304D - - - {{4.718}} - {{4.720}} - {{4.724}} - {{4.726}} - {{4.728}} - - - 4.718 - 4.720 - 4.724 - 4.726 - 4.728 - - - {{4.704}} - {{4.706}} - {{4.708}} - {{4.712}} - {{4.714}} - - - 4.704 - 4.706 - 4.708 - 4.712 - 4.714 - - - {{4.426}} - {{4.428}} - {{4.430}} - {{4.432}} - {{4.702}} - - - 4.426 - 4.428 - 4.430 - 4.432 - 4.702 - - - - - E1 - E2 - E3 - E4 - E5 - E6 - E7 - E8 - E9 - E10 - E11 - E12 - - - {{E1}} - {{E2}} - {{E3}} - {{E4}} - {{E5}} - {{E6}} - {{E7}} - {{E8}} - {{E9}} - {{E10}} - {{E11}} - {{E12}} + + + Jess Alexander 4.110 + Erica Alvarez 4.718 + Ivana Ash E1 + Cem Barutçu E9 + David Beaver 4.708 + John Beavers 4.720 + Sasha Boguraev W2 + Masha Cheremisinova E5 + Gabriella Chronis E4 + Megan Crowhurst 4.712 + Meg Davidson 4.618 + Ashwini Deo 4.426 + Sampada Deshpande W5 + Pattie Epps 4.736 + Katrin Erk 4.734 + Teagan Esther E7 + James Fazio 4.622 + Gabriel Gallinate E8 + Barrett Hamp W12 + Leticia Hanada W10 + Ethan Hartzell E3 + Juan Pablo Jáuregui Magrina W9 + + + Taylor Joyce W11 + Danny Law 4.432 + Rebecca Le Borgne 4.624 + Sooji Lee E6 + Jessy Li 4.728 + Fernando Llanos 4.730 + Agnes Lombardi 4.428 + Kyle Mahowald 4.430 + Rebecca Marcus 4.304C + Richard Meier 4.732 + Don Miller 4.618 + Scott Myers 4.726 + Lillian Nguyen FD + Baorian Nuchged 4.110 + Corrine Occhino 4.704 + Lee Orfila W8 + Youn-Gyu Park W7 + SeYeon Park E10 + Justin Power 4.706 + David Quinto-Pozos 4.714 + Ben Rapstine 4.304D + Hongjin Ren W1 + + + Catalina Santamaria Soto E12 + Jefferson Saransig W13 + Will Sheffield W4 + Rajka Smiljanić 4.724 + Madeline Smith (NA) + Steve Wechsler 4.702 + Leonie Weissweiler 4.108 + Sierra Westjohn E2 + Debbie White 4.620 + Elijah Wilder E11 + Tony Woodbury 4.738 + Michael Wynne 4.626 + Qing Yao W6 + Hongli Zhan (NA) + Asher Zheng W3 - - - - - - - - - - - - - + + + + + + + + + + + + + - + E1 @@ -344,54 +296,22 @@ E12 - - - W1 - W2 - W3 - W4 - W5 - W6 - W7 - W8 - W9 - W10 - W11 - W12 - W13 - - - {{W1}} - {{W2}} - {{W3}} - {{W4}} - {{W5}} - {{W6}} - {{W7}} - {{W8}} - {{W9}} - {{W10}} - {{W11}} - {{W12}} - {{W13}} - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + W5 @@ -432,57 +352,34 @@ W13 - - - A1 - A2 - A3 - - - {{A1}} - {{A2}} - {{A3}} - - - - - - + + + + + + + + + + + + + - - - A3 - - - A1 - - - A2 - - - - - - - - - - - - - - - - - - Patton Hall - Fourth Floor - - - https://linguistics.github.io/rlp/map - - - RLP + + + Department of Linguistics + | Patton Hall, Fourth Floor + + + + to Skybridge + + + to elevators + + \ No newline at end of file diff --git a/package.json b/package.json deleted file mode 100644 index f75020d..0000000 --- a/package.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "linguistics-cla", - "homepage": "https://github.com/linguistics/rlp", - "bugs": "https://github.com/linguistics/rlp/issues", - "repository": { - "type": "git", - "url": "https://github.com/linguistics/rlp.git" - }, - "devDependencies": { - "clean-css": "*", - "less": "*" - }, - "staticDependencies": { - "angular": "*", - "jquery": "*", - "underscore": "*" - }, - "staticPattern": "static/lib/{file}" -} diff --git a/people.tsv b/people.tsv deleted file mode 100644 index 393f329..0000000 --- a/people.tsv +++ /dev/null @@ -1,58 +0,0 @@ -name email location -Hongjin Ren hongjin.ren@utmail.utexas.edu W1 -Sasha Boguraev sasha.boguraev@utexas.edu W2 -Madeline Smith madelinesmith@utexas.edu W3 -Will Sheffield sheffieldw@utexas.com W4 -Sampada Deshpande sampadadeshpande@utexas.edu W5 -Qing Yao qyao@utexas.edu W6 -Youn-Gyu Park youngyu.park@utexas.edu W7 -Lee Orfila leeorfila@utexas.edu W8 -Juan Juaregui Magrina jj39999@my.utexas.edu W9 -Leticia Hanada leticiakaori@utexas.edu W10 -Taylor Joyce taylorjoyce306@gmail.edu W11 -Barrett Hamp barretthamp1@utexas.edu W12 -Jefferson Saransig jsaransig8@gmail.com W13 -Ivana Ash iash@utexas.edu E1 -Oscar Rojas Villarroel orv@utexas.edu E2 -Ethan Hartzell ehartz01@utexas.edu E3 -Gabriella Chronis gabriellachronis@gmail.com E4 -Masha Cheremisinova mcheremisinova@utexas.edu E5 -Sooji Lee sooji.lee@utexas.edu E6 -Teagan Stump teagans@austin.utexas.edu E7 -Gabriel Gallinate gabriel.gallinate@utexas.edu E8 -Cem Barutçu unknown@utexas.edu E9 -SeYeon Park seyeon.park@utexas.edu E10 -Elijah Wilder ew@utexas.edu E11 -Catalina Santamaria Soto lcs2972@utexas.edu E12 -Baorian baorian@utmail.utexas.edu 4.110 -Jess Alexander jess.alexander@utmail.utexas.edu 4.110 -Asher Zheng asher.zheng@utexas.edu 4.434 -Andrea Szavo szavo.andrea@arts.unideb.hu 4.434 -L Weissweiler / S Zanotto unknown@utexas.edu 4.428 -Dr. Ashwini Deo ashwini.deo@austin.utexas.edu 4.426 -Dr. Kyle Mahowald mahowald@utexas.edu 4.430 -Dr. Danny Law dannylaw@austin.utexas.edu 4.432 -Dr. Steve Wechsler wechsler@austin.utexas.edu 4.702 -Dr. Corrine Occhino occhino@austin.utexas.edu 4.704 -Dr. Justin Power justin.power@utexas.edu 4.706 -Dr. David Beaver dib@utexas.edu 4.708 -Dr. Megan Crowhurst mcrowhurst@mail.utexas.edu 4.712 -Dr. David Quinto-Pozos davidqp@austin.utexas.edu 4.714 -Erica Alvarez erica.alvarez@austin.utexas.edu 4.718 -Dr. John Beavers jtbeavers@austin.utexas.edu 4.720 -Dr. Rajka Smiljanic rajka@mail.utexas.edu 4.724 -Dr. Scott Myers s.myers@mail.utexas.edu 4.726 -Dr. Jessy Li jessy@austin.utexas.edu 4.728 -Dr. Fernando Llanos fllanos@austin.utexas.edu 4.730 -Dr. Richard Meier rmeier@utexas.edu 4.732 -Dr. Katrin Erk katrin.erk@mail.utexas.edu 4.734 -Dr. Pattie Epps pattieepps@austin.utexas.edu 4.736 -Dr. Tony Woodbury woodbury@austin.utexas.edu 4.738 -Don Miller unknown@austin.utexas.edu 4.618 -Debbie White debbiewhiteasl@gmail.com 4.620 -James Fazio unknown@utexas.edu 4.622 -Rebecca Le Borgne rebecca.lovitch@utexas.edu 4.624 -Michael Wynne mwynnejr@mac.com 4.626 -Rebecca Marcus gulliver@austin.utexas.edu 4.304C -Ben Rapstine rapstine@austin.utexas.edu 4.304D -Lillian Nguyen lillian.nguyen@austin.utexas.edu 4.304 diff --git a/people.xlsx b/people.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..396328ca841c3bc32548607c340eb5b8a42cd2c9 GIT binary patch literal 12894 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 O0PP>O|0mrapZ*6pR2S+1 literal 0 HcmV?d00001 diff --git a/static/app.js b/static/app.js deleted file mode 100644 index 5157441..0000000 --- a/static/app.js +++ /dev/null @@ -1,157 +0,0 @@ -/*jslint browser: true, devel: true */ /*globals _, angular */ -function parseSV(text) { - var lines = text.split('\n'); - var FS = (lines[0].split('\t').length > lines[0].split(',').length) ? '\t' : ','; - var columns = lines[0].split(FS); - return lines.slice(1).filter(function(line) { - return line !== ''; - }).map(function(row) { - var cells = row.split(FS); - return _.object(columns, cells); - }); -} - - -var app = angular.module('app', [ - 'ngStorage', -]); - -// reusables: - -app.filter('where', function() { - // return function(list, properties) { return _.where(list, properties); }; - return _.where; -}); - -app.filter('encode', function() { - return window.encodeURIComponent; -}); - -app.directive('separator', function() { - // like ng-list, but bi-directional - // http://docs.angularjs.org/api/ng.directive:ngList - return { - scope: { - separator: '=' - }, - require: 'ngModel', - link: function(scope, el, attrs, ngModel) { - ngModel.$parsers.push(function(string) { - // javascript doesn't so ''.split('x') correctly (should be [], is empty string) - if (string === '') return []; - return string.split(scope.separator); - }); - ngModel.$formatters.push(function(array) { - return (array || []).join(scope.separator); - }); - } - }; -}); - -app.directive('contacts', function() { - return { - restrict: 'E', - templateUrl: 'templates/contacts.html', - scope: { - contacts: '=ngModel', - predicate: '=where', - format: '=format' - }, - replace: true - }; -}); - -// map controllers - -app.controller('MapCtrl', function($scope) { - $scope.print = window.location.hash == '#print'; -}); - -app.directive('map', function($http, $q) { - return { - restrict: 'E', - link: function(scope, el) { - $q.all({ - svg: $http.get('map.svg'), - tsv: $http.get('people.tsv') - }).then(function(responses) { - // res objects have these fields: config, data, headers, status - var people = parseSV(responses.tsv.data); - var svg = responses.svg.data.replace(/\{\{(.+?)\}\}/g, function(match, token) { - var occupants = _.where(people, {location: token}); - var occupant_names = _.pluck(occupants, 'name'); - return occupant_names.join(', '); - }); - - el.html(svg).find('svg').css({width: '100%', height: '100%'}); - }, function(exc) { - console.log('Could not load resources:', exc); - }); - } - }; -}); - -// admin controllers - -app.controller('AdminCtrl', function($scope, $http, $localStorage) { - $scope.students = []; - $scope.recompute = function() { - $scope.privileged_missing = $scope.$storage.privileged.filter(function(name) { - return _.findWhere($scope.students, {name: name}) === undefined; - }); - - $scope.winners_missing = $scope.$storage.winners.filter(function(name) { - return _.findWhere($scope.students, {name: name}) === undefined; - }); - - $scope.students.forEach(function(s) { - s.incumbent = s.location !== ''; - s.privileged = $scope.$storage.privileged.indexOf(s.name) != -1; - // `itinerants = incumbents - privileged` (students who may need to move out) - s.itinerant = s.incumbent && !s.privileged; - // `residents = incumbents ∩ privileged` - // (these guys aren't going to move, and their workstations will not go up for grabs) - s.resident = s.incumbent && s.privileged; - // `homeless = privileged'` (the complement of `privileged`) - s.homeless = !s.privileged; - s.winner = $scope.$storage.winners.indexOf(s.name) != -1; - // `incoming = (privileged + winner) - incumbents` - // (students who will for sure get a workstation but we don't yet know where) - s.incoming = (s.privileged || s.winner) && !s.incumbent; - }); - }; - $scope.$watch('students', $scope.recompute); - $scope.$watch('$storage.privileged', $scope.recompute); - $scope.$watch('$storage.winners', $scope.recompute); - - $http.get('people.tsv').then(function(res) { - $scope.students = parseSV(res.data).filter(function(occupant) { - return occupant.name && (occupant.location === '') || occupant.location.match(/^[WE]\d+/); - }); - }, function(err) { - console.log('Encountered error:', err); - }); - - // init localStorage - $scope.$storage = $localStorage.$default({ - studentFormat: 'name', - privileged: [], - winners: [], - nworkstations: 28 - }); - - var url = Url.parse(location); - var changed = !!(url.query.privileged || url.query.winners); - if (url.query.privileged) { - $scope.$storage.privileged = url.query.privileged.split(/\n/); - delete url.query.privileged; - } - if (url.query.winners) { - $scope.$storage.winners = url.query.winners.split(/\n/); - delete url.query.winners; - } - if (changed) { - // setting window.location occurs before the localStorage flushes, so we can't do that. - history.replaceState(null, '', url.toString()); - } -}); diff --git a/static/lib/angular.js b/static/lib/angular.js deleted file mode 100644 index d4d7abc..0000000 --- a/static/lib/angular.js +++ /dev/null @@ -1,20539 +0,0 @@ -/** - * @license AngularJS v1.2.6 - * (c) 2010-2014 Google, Inc. http://angularjs.org - * License: MIT - */ -(function(window, document, undefined) {'use strict'; - -/** - * @description - * - * This object provides a utility for producing rich Error messages within - * Angular. It can be called as follows: - * - * var exampleMinErr = minErr('example'); - * throw exampleMinErr('one', 'This {0} is {1}', foo, bar); - * - * The above creates an instance of minErr in the example namespace. The - * resulting error will have a namespaced error code of example.one. The - * resulting error will replace {0} with the value of foo, and {1} with the - * value of bar. The object is not restricted in the number of arguments it can - * take. - * - * If fewer arguments are specified than necessary for interpolation, the extra - * interpolation markers will be preserved in the final string. - * - * Since data will be parsed statically during a build step, some restrictions - * are applied with respect to how minErr instances are created and called. - * Instances should have names of the form namespaceMinErr for a minErr created - * using minErr('namespace') . Error codes, namespaces and template strings - * should all be static strings, not variables or general expressions. - * - * @param {string} module The namespace to use for the new minErr instance. - * @returns {function(string, string, ...): Error} instance - */ - -function minErr(module) { - return function () { - var code = arguments[0], - prefix = '[' + (module ? module + ':' : '') + code + '] ', - template = arguments[1], - templateArgs = arguments, - stringify = function (obj) { - if (typeof obj === 'function') { - return obj.toString().replace(/ \{[\s\S]*$/, ''); - } else if (typeof obj === 'undefined') { - return 'undefined'; - } else if (typeof obj !== 'string') { - return JSON.stringify(obj); - } - return obj; - }, - message, i; - - message = prefix + template.replace(/\{\d+\}/g, function (match) { - var index = +match.slice(1, -1), arg; - - if (index + 2 < templateArgs.length) { - arg = templateArgs[index + 2]; - if (typeof arg === 'function') { - return arg.toString().replace(/ ?\{[\s\S]*$/, ''); - } else if (typeof arg === 'undefined') { - return 'undefined'; - } else if (typeof arg !== 'string') { - return toJson(arg); - } - return arg; - } - return match; - }); - - message = message + '\nhttp://errors.angularjs.org/1.2.6/' + - (module ? module + '/' : '') + code; - for (i = 2; i < arguments.length; i++) { - message = message + (i == 2 ? '?' : '&') + 'p' + (i-2) + '=' + - encodeURIComponent(stringify(arguments[i])); - } - - return new Error(message); - }; -} - -/* We need to tell jshint what variables are being exported */ -/* global - -angular, - -msie, - -jqLite, - -jQuery, - -slice, - -push, - -toString, - -ngMinErr, - -_angular, - -angularModule, - -nodeName_, - -uid, - - -lowercase, - -uppercase, - -manualLowercase, - -manualUppercase, - -nodeName_, - -isArrayLike, - -forEach, - -sortedKeys, - -forEachSorted, - -reverseParams, - -nextUid, - -setHashKey, - -extend, - -int, - -inherit, - -noop, - -identity, - -valueFn, - -isUndefined, - -isDefined, - -isObject, - -isString, - -isNumber, - -isDate, - -isArray, - -isFunction, - -isRegExp, - -isWindow, - -isScope, - -isFile, - -isBoolean, - -trim, - -isElement, - -makeMap, - -map, - -size, - -includes, - -indexOf, - -arrayRemove, - -isLeafNode, - -copy, - -shallowCopy, - -equals, - -csp, - -concat, - -sliceArgs, - -bind, - -toJsonReplacer, - -toJson, - -fromJson, - -toBoolean, - -startingTag, - -tryDecodeURIComponent, - -parseKeyValue, - -toKeyValue, - -encodeUriSegment, - -encodeUriQuery, - -angularInit, - -bootstrap, - -snake_case, - -bindJQuery, - -assertArg, - -assertArgFn, - -assertNotHasOwnProperty, - -getter, - -getBlockElements, - -*/ - -//////////////////////////////////// - -/** - * @ngdoc function - * @name angular.lowercase - * @function - * - * @description Converts the specified string to lowercase. - * @param {string} string String to be converted to lowercase. - * @returns {string} Lowercased string. - */ -var lowercase = function(string){return isString(string) ? string.toLowerCase() : string;}; - - -/** - * @ngdoc function - * @name angular.uppercase - * @function - * - * @description Converts the specified string to uppercase. - * @param {string} string String to be converted to uppercase. - * @returns {string} Uppercased string. - */ -var uppercase = function(string){return isString(string) ? string.toUpperCase() : string;}; - - -var manualLowercase = function(s) { - /* jshint bitwise: false */ - return isString(s) - ? s.replace(/[A-Z]/g, function(ch) {return String.fromCharCode(ch.charCodeAt(0) | 32);}) - : s; -}; -var manualUppercase = function(s) { - /* jshint bitwise: false */ - return isString(s) - ? s.replace(/[a-z]/g, function(ch) {return String.fromCharCode(ch.charCodeAt(0) & ~32);}) - : s; -}; - - -// String#toLowerCase and String#toUpperCase don't produce correct results in browsers with Turkish -// locale, for this reason we need to detect this case and redefine lowercase/uppercase methods -// with correct but slower alternatives. -if ('i' !== 'I'.toLowerCase()) { - lowercase = manualLowercase; - uppercase = manualUppercase; -} - - -var /** holds major version number for IE or NaN for real browsers */ - msie, - jqLite, // delay binding since jQuery could be loaded after us. - jQuery, // delay binding - slice = [].slice, - push = [].push, - toString = Object.prototype.toString, - ngMinErr = minErr('ng'), - - - _angular = window.angular, - /** @name angular */ - angular = window.angular || (window.angular = {}), - angularModule, - nodeName_, - uid = ['0', '0', '0']; - -/** - * IE 11 changed the format of the UserAgent string. - * See http://msdn.microsoft.com/en-us/library/ms537503.aspx - */ -msie = int((/msie (\d+)/.exec(lowercase(navigator.userAgent)) || [])[1]); -if (isNaN(msie)) { - msie = int((/trident\/.*; rv:(\d+)/.exec(lowercase(navigator.userAgent)) || [])[1]); -} - - -/** - * @private - * @param {*} obj - * @return {boolean} Returns true if `obj` is an array or array-like object (NodeList, Arguments, - * String ...) - */ -function isArrayLike(obj) { - if (obj == null || isWindow(obj)) { - return false; - } - - var length = obj.length; - - if (obj.nodeType === 1 && length) { - return true; - } - - return isString(obj) || isArray(obj) || length === 0 || - typeof length === 'number' && length > 0 && (length - 1) in obj; -} - -/** - * @ngdoc function - * @name angular.forEach - * @function - * - * @description - * Invokes the `iterator` function once for each item in `obj` collection, which can be either an - * object or an array. The `iterator` function is invoked with `iterator(value, key)`, where `value` - * is the value of an object property or an array element and `key` is the object property key or - * array element index. Specifying a `context` for the function is optional. - * - * Note: this function was previously known as `angular.foreach`. - * -

-     var values = {name: 'misko', gender: 'male'};
-     var log = [];
-     angular.forEach(values, function(value, key){
-       this.push(key + ': ' + value);
-     }, log);
-     expect(log).toEqual(['name: misko', 'gender:male']);
-   
- * - * @param {Object|Array} obj Object to iterate over. - * @param {Function} iterator Iterator function. - * @param {Object=} context Object to become context (`this`) for the iterator function. - * @returns {Object|Array} Reference to `obj`. - */ -function forEach(obj, iterator, context) { - var key; - if (obj) { - if (isFunction(obj)){ - for (key in obj) { - // Need to check if hasOwnProperty exists, - // as on IE8 the result of querySelectorAll is an object without a hasOwnProperty function - if (key != 'prototype' && key != 'length' && key != 'name' && (!obj.hasOwnProperty || obj.hasOwnProperty(key))) { - iterator.call(context, obj[key], key); - } - } - } else if (obj.forEach && obj.forEach !== forEach) { - obj.forEach(iterator, context); - } else if (isArrayLike(obj)) { - for (key = 0; key < obj.length; key++) - iterator.call(context, obj[key], key); - } else { - for (key in obj) { - if (obj.hasOwnProperty(key)) { - iterator.call(context, obj[key], key); - } - } - } - } - return obj; -} - -function sortedKeys(obj) { - var keys = []; - for (var key in obj) { - if (obj.hasOwnProperty(key)) { - keys.push(key); - } - } - return keys.sort(); -} - -function forEachSorted(obj, iterator, context) { - var keys = sortedKeys(obj); - for ( var i = 0; i < keys.length; i++) { - iterator.call(context, obj[keys[i]], keys[i]); - } - return keys; -} - - -/** - * when using forEach the params are value, key, but it is often useful to have key, value. - * @param {function(string, *)} iteratorFn - * @returns {function(*, string)} - */ -function reverseParams(iteratorFn) { - return function(value, key) { iteratorFn(key, value); }; -} - -/** - * A consistent way of creating unique IDs in angular. The ID is a sequence of alpha numeric - * characters such as '012ABC'. The reason why we are not using simply a number counter is that - * the number string gets longer over time, and it can also overflow, where as the nextId - * will grow much slower, it is a string, and it will never overflow. - * - * @returns an unique alpha-numeric string - */ -function nextUid() { - var index = uid.length; - var digit; - - while(index) { - index--; - digit = uid[index].charCodeAt(0); - if (digit == 57 /*'9'*/) { - uid[index] = 'A'; - return uid.join(''); - } - if (digit == 90 /*'Z'*/) { - uid[index] = '0'; - } else { - uid[index] = String.fromCharCode(digit + 1); - return uid.join(''); - } - } - uid.unshift('0'); - return uid.join(''); -} - - -/** - * Set or clear the hashkey for an object. - * @param obj object - * @param h the hashkey (!truthy to delete the hashkey) - */ -function setHashKey(obj, h) { - if (h) { - obj.$$hashKey = h; - } - else { - delete obj.$$hashKey; - } -} - -/** - * @ngdoc function - * @name angular.extend - * @function - * - * @description - * Extends the destination object `dst` by copying all of the properties from the `src` object(s) - * to `dst`. You can specify multiple `src` objects. - * - * @param {Object} dst Destination object. - * @param {...Object} src Source object(s). - * @returns {Object} Reference to `dst`. - */ -function extend(dst) { - var h = dst.$$hashKey; - forEach(arguments, function(obj){ - if (obj !== dst) { - forEach(obj, function(value, key){ - dst[key] = value; - }); - } - }); - - setHashKey(dst,h); - return dst; -} - -function int(str) { - return parseInt(str, 10); -} - - -function inherit(parent, extra) { - return extend(new (extend(function() {}, {prototype:parent}))(), extra); -} - -/** - * @ngdoc function - * @name angular.noop - * @function - * - * @description - * A function that performs no operations. This function can be useful when writing code in the - * functional style. -
-     function foo(callback) {
-       var result = calculateResult();
-       (callback || angular.noop)(result);
-     }
-   
- */ -function noop() {} -noop.$inject = []; - - -/** - * @ngdoc function - * @name angular.identity - * @function - * - * @description - * A function that returns its first argument. This function is useful when writing code in the - * functional style. - * -
-     function transformer(transformationFn, value) {
-       return (transformationFn || angular.identity)(value);
-     };
-   
- */ -function identity($) {return $;} -identity.$inject = []; - - -function valueFn(value) {return function() {return value;};} - -/** - * @ngdoc function - * @name angular.isUndefined - * @function - * - * @description - * Determines if a reference is undefined. - * - * @param {*} value Reference to check. - * @returns {boolean} True if `value` is undefined. - */ -function isUndefined(value){return typeof value === 'undefined';} - - -/** - * @ngdoc function - * @name angular.isDefined - * @function - * - * @description - * Determines if a reference is defined. - * - * @param {*} value Reference to check. - * @returns {boolean} True if `value` is defined. - */ -function isDefined(value){return typeof value !== 'undefined';} - - -/** - * @ngdoc function - * @name angular.isObject - * @function - * - * @description - * Determines if a reference is an `Object`. Unlike `typeof` in JavaScript, `null`s are not - * considered to be objects. - * - * @param {*} value Reference to check. - * @returns {boolean} True if `value` is an `Object` but not `null`. - */ -function isObject(value){return value != null && typeof value === 'object';} - - -/** - * @ngdoc function - * @name angular.isString - * @function - * - * @description - * Determines if a reference is a `String`. - * - * @param {*} value Reference to check. - * @returns {boolean} True if `value` is a `String`. - */ -function isString(value){return typeof value === 'string';} - - -/** - * @ngdoc function - * @name angular.isNumber - * @function - * - * @description - * Determines if a reference is a `Number`. - * - * @param {*} value Reference to check. - * @returns {boolean} True if `value` is a `Number`. - */ -function isNumber(value){return typeof value === 'number';} - - -/** - * @ngdoc function - * @name angular.isDate - * @function - * - * @description - * Determines if a value is a date. - * - * @param {*} value Reference to check. - * @returns {boolean} True if `value` is a `Date`. - */ -function isDate(value){ - return toString.call(value) === '[object Date]'; -} - - -/** - * @ngdoc function - * @name angular.isArray - * @function - * - * @description - * Determines if a reference is an `Array`. - * - * @param {*} value Reference to check. - * @returns {boolean} True if `value` is an `Array`. - */ -function isArray(value) { - return toString.call(value) === '[object Array]'; -} - - -/** - * @ngdoc function - * @name angular.isFunction - * @function - * - * @description - * Determines if a reference is a `Function`. - * - * @param {*} value Reference to check. - * @returns {boolean} True if `value` is a `Function`. - */ -function isFunction(value){return typeof value === 'function';} - - -/** - * Determines if a value is a regular expression object. - * - * @private - * @param {*} value Reference to check. - * @returns {boolean} True if `value` is a `RegExp`. - */ -function isRegExp(value) { - return toString.call(value) === '[object RegExp]'; -} - - -/** - * Checks if `obj` is a window object. - * - * @private - * @param {*} obj Object to check - * @returns {boolean} True if `obj` is a window obj. - */ -function isWindow(obj) { - return obj && obj.document && obj.location && obj.alert && obj.setInterval; -} - - -function isScope(obj) { - return obj && obj.$evalAsync && obj.$watch; -} - - -function isFile(obj) { - return toString.call(obj) === '[object File]'; -} - - -function isBoolean(value) { - return typeof value === 'boolean'; -} - - -var trim = (function() { - // native trim is way faster: http://jsperf.com/angular-trim-test - // but IE doesn't have it... :-( - // TODO: we should move this into IE/ES5 polyfill - if (!String.prototype.trim) { - return function(value) { - return isString(value) ? value.replace(/^\s\s*/, '').replace(/\s\s*$/, '') : value; - }; - } - return function(value) { - return isString(value) ? value.trim() : value; - }; -})(); - - -/** - * @ngdoc function - * @name angular.isElement - * @function - * - * @description - * Determines if a reference is a DOM element (or wrapped jQuery element). - * - * @param {*} value Reference to check. - * @returns {boolean} True if `value` is a DOM element (or wrapped jQuery element). - */ -function isElement(node) { - return !!(node && - (node.nodeName // we are a direct element - || (node.on && node.find))); // we have an on and find method part of jQuery API -} - -/** - * @param str 'key1,key2,...' - * @returns {object} in the form of {key1:true, key2:true, ...} - */ -function makeMap(str){ - var obj = {}, items = str.split(","), i; - for ( i = 0; i < items.length; i++ ) - obj[ items[i] ] = true; - return obj; -} - - -if (msie < 9) { - nodeName_ = function(element) { - element = element.nodeName ? element : element[0]; - return (element.scopeName && element.scopeName != 'HTML') - ? uppercase(element.scopeName + ':' + element.nodeName) : element.nodeName; - }; -} else { - nodeName_ = function(element) { - return element.nodeName ? element.nodeName : element[0].nodeName; - }; -} - - -function map(obj, iterator, context) { - var results = []; - forEach(obj, function(value, index, list) { - results.push(iterator.call(context, value, index, list)); - }); - return results; -} - - -/** - * @description - * Determines the number of elements in an array, the number of properties an object has, or - * the length of a string. - * - * Note: This function is used to augment the Object type in Angular expressions. See - * {@link angular.Object} for more information about Angular arrays. - * - * @param {Object|Array|string} obj Object, array, or string to inspect. - * @param {boolean} [ownPropsOnly=false] Count only "own" properties in an object - * @returns {number} The size of `obj` or `0` if `obj` is neither an object nor an array. - */ -function size(obj, ownPropsOnly) { - var count = 0, key; - - if (isArray(obj) || isString(obj)) { - return obj.length; - } else if (isObject(obj)){ - for (key in obj) - if (!ownPropsOnly || obj.hasOwnProperty(key)) - count++; - } - - return count; -} - - -function includes(array, obj) { - return indexOf(array, obj) != -1; -} - -function indexOf(array, obj) { - if (array.indexOf) return array.indexOf(obj); - - for (var i = 0; i < array.length; i++) { - if (obj === array[i]) return i; - } - return -1; -} - -function arrayRemove(array, value) { - var index = indexOf(array, value); - if (index >=0) - array.splice(index, 1); - return value; -} - -function isLeafNode (node) { - if (node) { - switch (node.nodeName) { - case "OPTION": - case "PRE": - case "TITLE": - return true; - } - } - return false; -} - -/** - * @ngdoc function - * @name angular.copy - * @function - * - * @description - * Creates a deep copy of `source`, which should be an object or an array. - * - * * If no destination is supplied, a copy of the object or array is created. - * * If a destination is provided, all of its elements (for array) or properties (for objects) - * are deleted and then all elements/properties from the source are copied to it. - * * If `source` is not an object or array (inc. `null` and `undefined`), `source` is returned. - * * If `source` is identical to 'destination' an exception will be thrown. - * - * @param {*} source The source that will be used to make a copy. - * Can be any type, including primitives, `null`, and `undefined`. - * @param {(Object|Array)=} destination Destination into which the source is copied. If - * provided, must be of the same type as `source`. - * @returns {*} The copy or updated `destination`, if `destination` was specified. - * - * @example - - -
-
- Name:
- E-mail:
- Gender: male - female
- - -
-
form = {{user | json}}
-
master = {{master | json}}
-
- - -
-
- */ -function copy(source, destination){ - if (isWindow(source) || isScope(source)) { - throw ngMinErr('cpws', - "Can't copy! Making copies of Window or Scope instances is not supported."); - } - - if (!destination) { - destination = source; - if (source) { - if (isArray(source)) { - destination = copy(source, []); - } else if (isDate(source)) { - destination = new Date(source.getTime()); - } else if (isRegExp(source)) { - destination = new RegExp(source.source); - } else if (isObject(source)) { - destination = copy(source, {}); - } - } - } else { - if (source === destination) throw ngMinErr('cpi', - "Can't copy! Source and destination are identical."); - if (isArray(source)) { - destination.length = 0; - for ( var i = 0; i < source.length; i++) { - destination.push(copy(source[i])); - } - } else { - var h = destination.$$hashKey; - forEach(destination, function(value, key){ - delete destination[key]; - }); - for ( var key in source) { - destination[key] = copy(source[key]); - } - setHashKey(destination,h); - } - } - return destination; -} - -/** - * Create a shallow copy of an object - */ -function shallowCopy(src, dst) { - dst = dst || {}; - - for(var key in src) { - // shallowCopy is only ever called by $compile nodeLinkFn, which has control over src - // so we don't need to worry about using our custom hasOwnProperty here - if (src.hasOwnProperty(key) && key.charAt(0) !== '$' && key.charAt(1) !== '$') { - dst[key] = src[key]; - } - } - - return dst; -} - - -/** - * @ngdoc function - * @name angular.equals - * @function - * - * @description - * Determines if two objects or two values are equivalent. Supports value types, regular - * expressions, arrays and objects. - * - * Two objects or values are considered equivalent if at least one of the following is true: - * - * * Both objects or values pass `===` comparison. - * * Both objects or values are of the same type and all of their properties are equal by - * comparing them with `angular.equals`. - * * Both values are NaN. (In JavaScript, NaN == NaN => false. But we consider two NaN as equal) - * * Both values represent the same regular expression (In JavasScript, - * /abc/ == /abc/ => false. But we consider two regular expressions as equal when their textual - * representation matches). - * - * During a property comparison, properties of `function` type and properties with names - * that begin with `$` are ignored. - * - * Scope and DOMWindow objects are being compared only by identify (`===`). - * - * @param {*} o1 Object or value to compare. - * @param {*} o2 Object or value to compare. - * @returns {boolean} True if arguments are equal. - */ -function equals(o1, o2) { - if (o1 === o2) return true; - if (o1 === null || o2 === null) return false; - if (o1 !== o1 && o2 !== o2) return true; // NaN === NaN - var t1 = typeof o1, t2 = typeof o2, length, key, keySet; - if (t1 == t2) { - if (t1 == 'object') { - if (isArray(o1)) { - if (!isArray(o2)) return false; - if ((length = o1.length) == o2.length) { - for(key=0; key 2 ? sliceArgs(arguments, 2) : []; - if (isFunction(fn) && !(fn instanceof RegExp)) { - return curryArgs.length - ? function() { - return arguments.length - ? fn.apply(self, curryArgs.concat(slice.call(arguments, 0))) - : fn.apply(self, curryArgs); - } - : function() { - return arguments.length - ? fn.apply(self, arguments) - : fn.call(self); - }; - } else { - // in IE, native methods are not functions so they cannot be bound (note: they don't need to be) - return fn; - } -} - - -function toJsonReplacer(key, value) { - var val = value; - - if (typeof key === 'string' && key.charAt(0) === '$') { - val = undefined; - } else if (isWindow(value)) { - val = '$WINDOW'; - } else if (value && document === value) { - val = '$DOCUMENT'; - } else if (isScope(value)) { - val = '$SCOPE'; - } - - return val; -} - - -/** - * @ngdoc function - * @name angular.toJson - * @function - * - * @description - * Serializes input into a JSON-formatted string. Properties with leading $ characters will be - * stripped since angular uses this notation internally. - * - * @param {Object|Array|Date|string|number} obj Input to be serialized into JSON. - * @param {boolean=} pretty If set to true, the JSON output will contain newlines and whitespace. - * @returns {string|undefined} JSON-ified string representing `obj`. - */ -function toJson(obj, pretty) { - if (typeof obj === 'undefined') return undefined; - return JSON.stringify(obj, toJsonReplacer, pretty ? ' ' : null); -} - - -/** - * @ngdoc function - * @name angular.fromJson - * @function - * - * @description - * Deserializes a JSON string. - * - * @param {string} json JSON string to deserialize. - * @returns {Object|Array|Date|string|number} Deserialized thingy. - */ -function fromJson(json) { - return isString(json) - ? JSON.parse(json) - : json; -} - - -function toBoolean(value) { - if (value && value.length !== 0) { - var v = lowercase("" + value); - value = !(v == 'f' || v == '0' || v == 'false' || v == 'no' || v == 'n' || v == '[]'); - } else { - value = false; - } - return value; -} - -/** - * @returns {string} Returns the string representation of the element. - */ -function startingTag(element) { - element = jqLite(element).clone(); - try { - // turns out IE does not let you set .html() on elements which - // are not allowed to have children. So we just ignore it. - element.empty(); - } catch(e) {} - // As Per DOM Standards - var TEXT_NODE = 3; - var elemHtml = jqLite('
').append(element).html(); - try { - return element[0].nodeType === TEXT_NODE ? lowercase(elemHtml) : - elemHtml. - match(/^(<[^>]+>)/)[1]. - replace(/^<([\w\-]+)/, function(match, nodeName) { return '<' + lowercase(nodeName); }); - } catch(e) { - return lowercase(elemHtml); - } - -} - - -///////////////////////////////////////////////// - -/** - * Tries to decode the URI component without throwing an exception. - * - * @private - * @param str value potential URI component to check. - * @returns {boolean} True if `value` can be decoded - * with the decodeURIComponent function. - */ -function tryDecodeURIComponent(value) { - try { - return decodeURIComponent(value); - } catch(e) { - // Ignore any invalid uri component - } -} - - -/** - * Parses an escaped url query string into key-value pairs. - * @returns Object.<(string|boolean)> - */ -function parseKeyValue(/**string*/keyValue) { - var obj = {}, key_value, key; - forEach((keyValue || "").split('&'), function(keyValue){ - if ( keyValue ) { - key_value = keyValue.split('='); - key = tryDecodeURIComponent(key_value[0]); - if ( isDefined(key) ) { - var val = isDefined(key_value[1]) ? tryDecodeURIComponent(key_value[1]) : true; - if (!obj[key]) { - obj[key] = val; - } else if(isArray(obj[key])) { - obj[key].push(val); - } else { - obj[key] = [obj[key],val]; - } - } - } - }); - return obj; -} - -function toKeyValue(obj) { - var parts = []; - forEach(obj, function(value, key) { - if (isArray(value)) { - forEach(value, function(arrayValue) { - parts.push(encodeUriQuery(key, true) + - (arrayValue === true ? '' : '=' + encodeUriQuery(arrayValue, true))); - }); - } else { - parts.push(encodeUriQuery(key, true) + - (value === true ? '' : '=' + encodeUriQuery(value, true))); - } - }); - return parts.length ? parts.join('&') : ''; -} - - -/** - * We need our custom method because encodeURIComponent is too aggressive and doesn't follow - * http://www.ietf.org/rfc/rfc3986.txt with regards to the character set (pchar) allowed in path - * segments: - * segment = *pchar - * pchar = unreserved / pct-encoded / sub-delims / ":" / "@" - * pct-encoded = "%" HEXDIG HEXDIG - * unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" - * sub-delims = "!" / "$" / "&" / "'" / "(" / ")" - * / "*" / "+" / "," / ";" / "=" - */ -function encodeUriSegment(val) { - return encodeUriQuery(val, true). - replace(/%26/gi, '&'). - replace(/%3D/gi, '='). - replace(/%2B/gi, '+'); -} - - -/** - * This method is intended for encoding *key* or *value* parts of query component. We need a custom - * method because encodeURIComponent is too aggressive and encodes stuff that doesn't have to be - * encoded per http://tools.ietf.org/html/rfc3986: - * query = *( pchar / "/" / "?" ) - * pchar = unreserved / pct-encoded / sub-delims / ":" / "@" - * unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" - * pct-encoded = "%" HEXDIG HEXDIG - * sub-delims = "!" / "$" / "&" / "'" / "(" / ")" - * / "*" / "+" / "," / ";" / "=" - */ -function encodeUriQuery(val, pctEncodeSpaces) { - return encodeURIComponent(val). - replace(/%40/gi, '@'). - replace(/%3A/gi, ':'). - replace(/%24/g, '$'). - replace(/%2C/gi, ','). - replace(/%20/g, (pctEncodeSpaces ? '%20' : '+')); -} - - -/** - * @ngdoc directive - * @name ng.directive:ngApp - * - * @element ANY - * @param {angular.Module} ngApp an optional application - * {@link angular.module module} name to load. - * - * @description - * - * Use this directive to **auto-bootstrap** an AngularJS application. The `ngApp` directive - * designates the **root element** of the application and is typically placed near the root element - * of the page - e.g. on the `` or `` tags. - * - * Only one AngularJS application can be auto-bootstrapped per HTML document. The first `ngApp` - * found in the document will be used to define the root element to auto-bootstrap as an - * application. To run multiple applications in an HTML document you must manually bootstrap them using - * {@link angular.bootstrap} instead. AngularJS applications cannot be nested within each other. - * - * You can specify an **AngularJS module** to be used as the root module for the application. This - * module will be loaded into the {@link AUTO.$injector} when the application is bootstrapped and - * should contain the application code needed or have dependencies on other modules that will - * contain the code. See {@link angular.module} for more information. - * - * In the example below if the `ngApp` directive were not placed on the `html` element then the - * document would not be compiled, the `AppController` would not be instantiated and the `{{ a+b }}` - * would not be resolved to `3`. - * - * `ngApp` is the easiest, and most common, way to bootstrap an application. - * - - -
- I can add: {{a}} + {{b}} = {{ a+b }} - - - angular.module('ngAppDemo', []).controller('ngAppDemoController', function($scope) { - $scope.a = 1; - $scope.b = 2; - }); - - - * - */ -function angularInit(element, bootstrap) { - var elements = [element], - appElement, - module, - names = ['ng:app', 'ng-app', 'x-ng-app', 'data-ng-app'], - NG_APP_CLASS_REGEXP = /\sng[:\-]app(:\s*([\w\d_]+);?)?\s/; - - function append(element) { - element && elements.push(element); - } - - forEach(names, function(name) { - names[name] = true; - append(document.getElementById(name)); - name = name.replace(':', '\\:'); - if (element.querySelectorAll) { - forEach(element.querySelectorAll('.' + name), append); - forEach(element.querySelectorAll('.' + name + '\\:'), append); - forEach(element.querySelectorAll('[' + name + ']'), append); - } - }); - - forEach(elements, function(element) { - if (!appElement) { - var className = ' ' + element.className + ' '; - var match = NG_APP_CLASS_REGEXP.exec(className); - if (match) { - appElement = element; - module = (match[2] || '').replace(/\s+/g, ','); - } else { - forEach(element.attributes, function(attr) { - if (!appElement && names[attr.name]) { - appElement = element; - module = attr.value; - } - }); - } - } - }); - if (appElement) { - bootstrap(appElement, module ? [module] : []); - } -} - -/** - * @ngdoc function - * @name angular.bootstrap - * @description - * Use this function to manually start up angular application. - * - * See: {@link guide/bootstrap Bootstrap} - * - * Note that ngScenario-based end-to-end tests cannot use this function to bootstrap manually. - * They must use {@link api/ng.directive:ngApp ngApp}. - * - * @param {Element} element DOM element which is the root of angular application. - * @param {Array=} modules an array of modules to load into the application. - * Each item in the array should be the name of a predefined module or a (DI annotated) - * function that will be invoked by the injector as a run block. - * See: {@link angular.module modules} - * @returns {AUTO.$injector} Returns the newly created injector for this app. - */ -function bootstrap(element, modules) { - var doBootstrap = function() { - element = jqLite(element); - - if (element.injector()) { - var tag = (element[0] === document) ? 'document' : startingTag(element); - throw ngMinErr('btstrpd', "App Already Bootstrapped with this Element '{0}'", tag); - } - - modules = modules || []; - modules.unshift(['$provide', function($provide) { - $provide.value('$rootElement', element); - }]); - modules.unshift('ng'); - var injector = createInjector(modules); - injector.invoke(['$rootScope', '$rootElement', '$compile', '$injector', '$animate', - function(scope, element, compile, injector, animate) { - scope.$apply(function() { - element.data('$injector', injector); - compile(element)(scope); - }); - }] - ); - return injector; - }; - - var NG_DEFER_BOOTSTRAP = /^NG_DEFER_BOOTSTRAP!/; - - if (window && !NG_DEFER_BOOTSTRAP.test(window.name)) { - return doBootstrap(); - } - - window.name = window.name.replace(NG_DEFER_BOOTSTRAP, ''); - angular.resumeBootstrap = function(extraModules) { - forEach(extraModules, function(module) { - modules.push(module); - }); - doBootstrap(); - }; -} - -var SNAKE_CASE_REGEXP = /[A-Z]/g; -function snake_case(name, separator){ - separator = separator || '_'; - return name.replace(SNAKE_CASE_REGEXP, function(letter, pos) { - return (pos ? separator : '') + letter.toLowerCase(); - }); -} - -function bindJQuery() { - // bind to jQuery if present; - jQuery = window.jQuery; - // reset to jQuery or default to us. - if (jQuery) { - jqLite = jQuery; - extend(jQuery.fn, { - scope: JQLitePrototype.scope, - isolateScope: JQLitePrototype.isolateScope, - controller: JQLitePrototype.controller, - injector: JQLitePrototype.injector, - inheritedData: JQLitePrototype.inheritedData - }); - // Method signature: - // jqLitePatchJQueryRemove(name, dispatchThis, filterElems, getterIfNoArguments) - jqLitePatchJQueryRemove('remove', true, true, false); - jqLitePatchJQueryRemove('empty', false, false, false); - jqLitePatchJQueryRemove('html', false, false, true); - } else { - jqLite = JQLite; - } - angular.element = jqLite; -} - -/** - * throw error if the argument is falsy. - */ -function assertArg(arg, name, reason) { - if (!arg) { - throw ngMinErr('areq', "Argument '{0}' is {1}", (name || '?'), (reason || "required")); - } - return arg; -} - -function assertArgFn(arg, name, acceptArrayAnnotation) { - if (acceptArrayAnnotation && isArray(arg)) { - arg = arg[arg.length - 1]; - } - - assertArg(isFunction(arg), name, 'not a function, got ' + - (arg && typeof arg == 'object' ? arg.constructor.name || 'Object' : typeof arg)); - return arg; -} - -/** - * throw error if the name given is hasOwnProperty - * @param {String} name the name to test - * @param {String} context the context in which the name is used, such as module or directive - */ -function assertNotHasOwnProperty(name, context) { - if (name === 'hasOwnProperty') { - throw ngMinErr('badname', "hasOwnProperty is not a valid {0} name", context); - } -} - -/** - * Return the value accessible from the object by path. Any undefined traversals are ignored - * @param {Object} obj starting object - * @param {string} path path to traverse - * @param {boolean=true} bindFnToScope - * @returns value as accessible by path - */ -//TODO(misko): this function needs to be removed -function getter(obj, path, bindFnToScope) { - if (!path) return obj; - var keys = path.split('.'); - var key; - var lastInstance = obj; - var len = keys.length; - - for (var i = 0; i < len; i++) { - key = keys[i]; - if (obj) { - obj = (lastInstance = obj)[key]; - } - } - if (!bindFnToScope && isFunction(obj)) { - return bind(lastInstance, obj); - } - return obj; -} - -/** - * Return the DOM siblings between the first and last node in the given array. - * @param {Array} array like object - * @returns jQlite object containing the elements - */ -function getBlockElements(nodes) { - var startNode = nodes[0], - endNode = nodes[nodes.length - 1]; - if (startNode === endNode) { - return jqLite(startNode); - } - - var element = startNode; - var elements = [element]; - - do { - element = element.nextSibling; - if (!element) break; - elements.push(element); - } while (element !== endNode); - - return jqLite(elements); -} - -/** - * @ngdoc interface - * @name angular.Module - * @description - * - * Interface for configuring angular {@link angular.module modules}. - */ - -function setupModuleLoader(window) { - - var $injectorMinErr = minErr('$injector'); - var ngMinErr = minErr('ng'); - - function ensure(obj, name, factory) { - return obj[name] || (obj[name] = factory()); - } - - var angular = ensure(window, 'angular', Object); - - // We need to expose `angular.$$minErr` to modules such as `ngResource` that reference it during bootstrap - angular.$$minErr = angular.$$minErr || minErr; - - return ensure(angular, 'module', function() { - /** @type {Object.} */ - var modules = {}; - - /** - * @ngdoc function - * @name angular.module - * @description - * - * The `angular.module` is a global place for creating, registering and retrieving Angular - * modules. - * All modules (angular core or 3rd party) that should be available to an application must be - * registered using this mechanism. - * - * When passed two or more arguments, a new module is created. If passed only one argument, an - * existing module (the name passed as the first argument to `module`) is retrieved. - * - * - * # Module - * - * A module is a collection of services, directives, filters, and configuration information. - * `angular.module` is used to configure the {@link AUTO.$injector $injector}. - * - *
-     * // Create a new module
-     * var myModule = angular.module('myModule', []);
-     *
-     * // register a new service
-     * myModule.value('appName', 'MyCoolApp');
-     *
-     * // configure existing services inside initialization blocks.
-     * myModule.config(function($locationProvider) {
-     *   // Configure existing providers
-     *   $locationProvider.hashPrefix('!');
-     * });
-     * 
- * - * Then you can create an injector and load your modules like this: - * - *
-     * var injector = angular.injector(['ng', 'MyModule'])
-     * 
- * - * However it's more likely that you'll just use - * {@link ng.directive:ngApp ngApp} or - * {@link angular.bootstrap} to simplify this process for you. - * - * @param {!string} name The name of the module to create or retrieve. - * @param {Array.=} requires If specified then new module is being created. If - * unspecified then the the module is being retrieved for further configuration. - * @param {Function} configFn Optional configuration function for the module. Same as - * {@link angular.Module#methods_config Module#config()}. - * @returns {module} new module with the {@link angular.Module} api. - */ - return function module(name, requires, configFn) { - var assertNotHasOwnProperty = function(name, context) { - if (name === 'hasOwnProperty') { - throw ngMinErr('badname', 'hasOwnProperty is not a valid {0} name', context); - } - }; - - assertNotHasOwnProperty(name, 'module'); - if (requires && modules.hasOwnProperty(name)) { - modules[name] = null; - } - return ensure(modules, name, function() { - if (!requires) { - throw $injectorMinErr('nomod', "Module '{0}' is not available! You either misspelled " + - "the module name or forgot to load it. If registering a module ensure that you " + - "specify the dependencies as the second argument.", name); - } - - /** @type {!Array.>} */ - var invokeQueue = []; - - /** @type {!Array.} */ - var runBlocks = []; - - var config = invokeLater('$injector', 'invoke'); - - /** @type {angular.Module} */ - var moduleInstance = { - // Private state - _invokeQueue: invokeQueue, - _runBlocks: runBlocks, - - /** - * @ngdoc property - * @name angular.Module#requires - * @propertyOf angular.Module - * @returns {Array.} List of module names which must be loaded before this module. - * @description - * Holds the list of modules which the injector will load before the current module is - * loaded. - */ - requires: requires, - - /** - * @ngdoc property - * @name angular.Module#name - * @propertyOf angular.Module - * @returns {string} Name of the module. - * @description - */ - name: name, - - - /** - * @ngdoc method - * @name angular.Module#provider - * @methodOf angular.Module - * @param {string} name service name - * @param {Function} providerType Construction function for creating new instance of the - * service. - * @description - * See {@link AUTO.$provide#provider $provide.provider()}. - */ - provider: invokeLater('$provide', 'provider'), - - /** - * @ngdoc method - * @name angular.Module#factory - * @methodOf angular.Module - * @param {string} name service name - * @param {Function} providerFunction Function for creating new instance of the service. - * @description - * See {@link AUTO.$provide#factory $provide.factory()}. - */ - factory: invokeLater('$provide', 'factory'), - - /** - * @ngdoc method - * @name angular.Module#service - * @methodOf angular.Module - * @param {string} name service name - * @param {Function} constructor A constructor function that will be instantiated. - * @description - * See {@link AUTO.$provide#service $provide.service()}. - */ - service: invokeLater('$provide', 'service'), - - /** - * @ngdoc method - * @name angular.Module#value - * @methodOf angular.Module - * @param {string} name service name - * @param {*} object Service instance object. - * @description - * See {@link AUTO.$provide#value $provide.value()}. - */ - value: invokeLater('$provide', 'value'), - - /** - * @ngdoc method - * @name angular.Module#constant - * @methodOf angular.Module - * @param {string} name constant name - * @param {*} object Constant value. - * @description - * Because the constant are fixed, they get applied before other provide methods. - * See {@link AUTO.$provide#constant $provide.constant()}. - */ - constant: invokeLater('$provide', 'constant', 'unshift'), - - /** - * @ngdoc method - * @name angular.Module#animation - * @methodOf angular.Module - * @param {string} name animation name - * @param {Function} animationFactory Factory function for creating new instance of an - * animation. - * @description - * - * **NOTE**: animations take effect only if the **ngAnimate** module is loaded. - * - * - * Defines an animation hook that can be later used with - * {@link ngAnimate.$animate $animate} service and directives that use this service. - * - *
-           * module.animation('.animation-name', function($inject1, $inject2) {
-           *   return {
-           *     eventName : function(element, done) {
-           *       //code to run the animation
-           *       //once complete, then run done()
-           *       return function cancellationFunction(element) {
-           *         //code to cancel the animation
-           *       }
-           *     }
-           *   }
-           * })
-           * 
- * - * See {@link ngAnimate.$animateProvider#register $animateProvider.register()} and - * {@link ngAnimate ngAnimate module} for more information. - */ - animation: invokeLater('$animateProvider', 'register'), - - /** - * @ngdoc method - * @name angular.Module#filter - * @methodOf angular.Module - * @param {string} name Filter name. - * @param {Function} filterFactory Factory function for creating new instance of filter. - * @description - * See {@link ng.$filterProvider#register $filterProvider.register()}. - */ - filter: invokeLater('$filterProvider', 'register'), - - /** - * @ngdoc method - * @name angular.Module#controller - * @methodOf angular.Module - * @param {string|Object} name Controller name, or an object map of controllers where the - * keys are the names and the values are the constructors. - * @param {Function} constructor Controller constructor function. - * @description - * See {@link ng.$controllerProvider#register $controllerProvider.register()}. - */ - controller: invokeLater('$controllerProvider', 'register'), - - /** - * @ngdoc method - * @name angular.Module#directive - * @methodOf angular.Module - * @param {string|Object} name Directive name, or an object map of directives where the - * keys are the names and the values are the factories. - * @param {Function} directiveFactory Factory function for creating new instance of - * directives. - * @description - * See {@link ng.$compileProvider#methods_directive $compileProvider.directive()}. - */ - directive: invokeLater('$compileProvider', 'directive'), - - /** - * @ngdoc method - * @name angular.Module#config - * @methodOf angular.Module - * @param {Function} configFn Execute this function on module load. Useful for service - * configuration. - * @description - * Use this method to register work which needs to be performed on module loading. - */ - config: config, - - /** - * @ngdoc method - * @name angular.Module#run - * @methodOf angular.Module - * @param {Function} initializationFn Execute this function after injector creation. - * Useful for application initialization. - * @description - * Use this method to register work which should be performed when the injector is done - * loading all modules. - */ - run: function(block) { - runBlocks.push(block); - return this; - } - }; - - if (configFn) { - config(configFn); - } - - return moduleInstance; - - /** - * @param {string} provider - * @param {string} method - * @param {String=} insertMethod - * @returns {angular.Module} - */ - function invokeLater(provider, method, insertMethod) { - return function() { - invokeQueue[insertMethod || 'push']([provider, method, arguments]); - return moduleInstance; - }; - } - }); - }; - }); - -} - -/* global - angularModule: true, - version: true, - - $LocaleProvider, - $CompileProvider, - - htmlAnchorDirective, - inputDirective, - inputDirective, - formDirective, - scriptDirective, - selectDirective, - styleDirective, - optionDirective, - ngBindDirective, - ngBindHtmlDirective, - ngBindTemplateDirective, - ngClassDirective, - ngClassEvenDirective, - ngClassOddDirective, - ngCspDirective, - ngCloakDirective, - ngControllerDirective, - ngFormDirective, - ngHideDirective, - ngIfDirective, - ngIncludeDirective, - ngIncludeFillContentDirective, - ngInitDirective, - ngNonBindableDirective, - ngPluralizeDirective, - ngRepeatDirective, - ngShowDirective, - ngStyleDirective, - ngSwitchDirective, - ngSwitchWhenDirective, - ngSwitchDefaultDirective, - ngOptionsDirective, - ngTranscludeDirective, - ngModelDirective, - ngListDirective, - ngChangeDirective, - requiredDirective, - requiredDirective, - ngValueDirective, - ngAttributeAliasDirectives, - ngEventDirectives, - - $AnchorScrollProvider, - $AnimateProvider, - $BrowserProvider, - $CacheFactoryProvider, - $ControllerProvider, - $DocumentProvider, - $ExceptionHandlerProvider, - $FilterProvider, - $InterpolateProvider, - $IntervalProvider, - $HttpProvider, - $HttpBackendProvider, - $LocationProvider, - $LogProvider, - $ParseProvider, - $RootScopeProvider, - $QProvider, - $$SanitizeUriProvider, - $SceProvider, - $SceDelegateProvider, - $SnifferProvider, - $TemplateCacheProvider, - $TimeoutProvider, - $WindowProvider -*/ - - -/** - * @ngdoc property - * @name angular.version - * @description - * An object that contains information about the current AngularJS version. This object has the - * following properties: - * - * - `full` – `{string}` – Full version string, such as "0.9.18". - * - `major` – `{number}` – Major version number, such as "0". - * - `minor` – `{number}` – Minor version number, such as "9". - * - `dot` – `{number}` – Dot version number, such as "18". - * - `codeName` – `{string}` – Code name of the release, such as "jiggling-armfat". - */ -var version = { - full: '1.2.6', // all of these placeholder strings will be replaced by grunt's - major: 1, // package task - minor: 2, - dot: 6, - codeName: 'taco-salsafication' -}; - - -function publishExternalAPI(angular){ - extend(angular, { - 'bootstrap': bootstrap, - 'copy': copy, - 'extend': extend, - 'equals': equals, - 'element': jqLite, - 'forEach': forEach, - 'injector': createInjector, - 'noop':noop, - 'bind':bind, - 'toJson': toJson, - 'fromJson': fromJson, - 'identity':identity, - 'isUndefined': isUndefined, - 'isDefined': isDefined, - 'isString': isString, - 'isFunction': isFunction, - 'isObject': isObject, - 'isNumber': isNumber, - 'isElement': isElement, - 'isArray': isArray, - 'version': version, - 'isDate': isDate, - 'lowercase': lowercase, - 'uppercase': uppercase, - 'callbacks': {counter: 0}, - '$$minErr': minErr, - '$$csp': csp - }); - - angularModule = setupModuleLoader(window); - try { - angularModule('ngLocale'); - } catch (e) { - angularModule('ngLocale', []).provider('$locale', $LocaleProvider); - } - - angularModule('ng', ['ngLocale'], ['$provide', - function ngModule($provide) { - // $$sanitizeUriProvider needs to be before $compileProvider as it is used by it. - $provide.provider({ - $$sanitizeUri: $$SanitizeUriProvider - }); - $provide.provider('$compile', $CompileProvider). - directive({ - a: htmlAnchorDirective, - input: inputDirective, - textarea: inputDirective, - form: formDirective, - script: scriptDirective, - select: selectDirective, - style: styleDirective, - option: optionDirective, - ngBind: ngBindDirective, - ngBindHtml: ngBindHtmlDirective, - ngBindTemplate: ngBindTemplateDirective, - ngClass: ngClassDirective, - ngClassEven: ngClassEvenDirective, - ngClassOdd: ngClassOddDirective, - ngCloak: ngCloakDirective, - ngController: ngControllerDirective, - ngForm: ngFormDirective, - ngHide: ngHideDirective, - ngIf: ngIfDirective, - ngInclude: ngIncludeDirective, - ngInit: ngInitDirective, - ngNonBindable: ngNonBindableDirective, - ngPluralize: ngPluralizeDirective, - ngRepeat: ngRepeatDirective, - ngShow: ngShowDirective, - ngStyle: ngStyleDirective, - ngSwitch: ngSwitchDirective, - ngSwitchWhen: ngSwitchWhenDirective, - ngSwitchDefault: ngSwitchDefaultDirective, - ngOptions: ngOptionsDirective, - ngTransclude: ngTranscludeDirective, - ngModel: ngModelDirective, - ngList: ngListDirective, - ngChange: ngChangeDirective, - required: requiredDirective, - ngRequired: requiredDirective, - ngValue: ngValueDirective - }). - directive({ - ngInclude: ngIncludeFillContentDirective - }). - directive(ngAttributeAliasDirectives). - directive(ngEventDirectives); - $provide.provider({ - $anchorScroll: $AnchorScrollProvider, - $animate: $AnimateProvider, - $browser: $BrowserProvider, - $cacheFactory: $CacheFactoryProvider, - $controller: $ControllerProvider, - $document: $DocumentProvider, - $exceptionHandler: $ExceptionHandlerProvider, - $filter: $FilterProvider, - $interpolate: $InterpolateProvider, - $interval: $IntervalProvider, - $http: $HttpProvider, - $httpBackend: $HttpBackendProvider, - $location: $LocationProvider, - $log: $LogProvider, - $parse: $ParseProvider, - $rootScope: $RootScopeProvider, - $q: $QProvider, - $sce: $SceProvider, - $sceDelegate: $SceDelegateProvider, - $sniffer: $SnifferProvider, - $templateCache: $TemplateCacheProvider, - $timeout: $TimeoutProvider, - $window: $WindowProvider - }); - } - ]); -} - -/* global - - -JQLitePrototype, - -addEventListenerFn, - -removeEventListenerFn, - -BOOLEAN_ATTR -*/ - -////////////////////////////////// -//JQLite -////////////////////////////////// - -/** - * @ngdoc function - * @name angular.element - * @function - * - * @description - * Wraps a raw DOM element or HTML string as a [jQuery](http://jquery.com) element. - * - * If jQuery is available, `angular.element` is an alias for the - * [jQuery](http://api.jquery.com/jQuery/) function. If jQuery is not available, `angular.element` - * delegates to Angular's built-in subset of jQuery, called "jQuery lite" or "jqLite." - * - *
jqLite is a tiny, API-compatible subset of jQuery that allows - * Angular to manipulate the DOM in a cross-browser compatible way. **jqLite** implements only the most - * commonly needed functionality with the goal of having a very small footprint.
- * - * To use jQuery, simply load it before `DOMContentLoaded` event fired. - * - *
**Note:** all element references in Angular are always wrapped with jQuery or - * jqLite; they are never raw DOM references.
- * - * ## Angular's jqLite - * jqLite provides only the following jQuery methods: - * - * - [`addClass()`](http://api.jquery.com/addClass/) - * - [`after()`](http://api.jquery.com/after/) - * - [`append()`](http://api.jquery.com/append/) - * - [`attr()`](http://api.jquery.com/attr/) - * - [`bind()`](http://api.jquery.com/on/) - Does not support namespaces, selectors or eventData - * - [`children()`](http://api.jquery.com/children/) - Does not support selectors - * - [`clone()`](http://api.jquery.com/clone/) - * - [`contents()`](http://api.jquery.com/contents/) - * - [`css()`](http://api.jquery.com/css/) - * - [`data()`](http://api.jquery.com/data/) - * - [`empty()`](http://api.jquery.com/empty/) - * - [`eq()`](http://api.jquery.com/eq/) - * - [`find()`](http://api.jquery.com/find/) - Limited to lookups by tag name - * - [`hasClass()`](http://api.jquery.com/hasClass/) - * - [`html()`](http://api.jquery.com/html/) - * - [`next()`](http://api.jquery.com/next/) - Does not support selectors - * - [`on()`](http://api.jquery.com/on/) - Does not support namespaces, selectors or eventData - * - [`off()`](http://api.jquery.com/off/) - Does not support namespaces or selectors - * - [`one()`](http://api.jquery.com/one/) - Does not support namespaces or selectors - * - [`parent()`](http://api.jquery.com/parent/) - Does not support selectors - * - [`prepend()`](http://api.jquery.com/prepend/) - * - [`prop()`](http://api.jquery.com/prop/) - * - [`ready()`](http://api.jquery.com/ready/) - * - [`remove()`](http://api.jquery.com/remove/) - * - [`removeAttr()`](http://api.jquery.com/removeAttr/) - * - [`removeClass()`](http://api.jquery.com/removeClass/) - * - [`removeData()`](http://api.jquery.com/removeData/) - * - [`replaceWith()`](http://api.jquery.com/replaceWith/) - * - [`text()`](http://api.jquery.com/text/) - * - [`toggleClass()`](http://api.jquery.com/toggleClass/) - * - [`triggerHandler()`](http://api.jquery.com/triggerHandler/) - Passes a dummy event object to handlers. - * - [`unbind()`](http://api.jquery.com/off/) - Does not support namespaces - * - [`val()`](http://api.jquery.com/val/) - * - [`wrap()`](http://api.jquery.com/wrap/) - * - * ## jQuery/jqLite Extras - * Angular also provides the following additional methods and events to both jQuery and jqLite: - * - * ### Events - * - `$destroy` - AngularJS intercepts all jqLite/jQuery's DOM destruction apis and fires this event - * on all DOM nodes being removed. This can be used to clean up any 3rd party bindings to the DOM - * element before it is removed. - * - * ### Methods - * - `controller(name)` - retrieves the controller of the current element or its parent. By default - * retrieves controller associated with the `ngController` directive. If `name` is provided as - * camelCase directive name, then the controller for this directive will be retrieved (e.g. - * `'ngModel'`). - * - `injector()` - retrieves the injector of the current element or its parent. - * - `scope()` - retrieves the {@link api/ng.$rootScope.Scope scope} of the current - * element or its parent. - * - `isolateScope()` - retrieves an isolate {@link api/ng.$rootScope.Scope scope} if one is attached directly to the - * current element. This getter should be used only on elements that contain a directive which starts a new isolate - * scope. Calling `scope()` on this element always returns the original non-isolate scope. - * - `inheritedData()` - same as `data()`, but walks up the DOM until a value is found or the top - * parent element is reached. - * - * @param {string|DOMElement} element HTML string or DOMElement to be wrapped into jQuery. - * @returns {Object} jQuery object. - */ - -var jqCache = JQLite.cache = {}, - jqName = JQLite.expando = 'ng-' + new Date().getTime(), - jqId = 1, - addEventListenerFn = (window.document.addEventListener - ? function(element, type, fn) {element.addEventListener(type, fn, false);} - : function(element, type, fn) {element.attachEvent('on' + type, fn);}), - removeEventListenerFn = (window.document.removeEventListener - ? function(element, type, fn) {element.removeEventListener(type, fn, false); } - : function(element, type, fn) {element.detachEvent('on' + type, fn); }); - -function jqNextId() { return ++jqId; } - - -var SPECIAL_CHARS_REGEXP = /([\:\-\_]+(.))/g; -var MOZ_HACK_REGEXP = /^moz([A-Z])/; -var jqLiteMinErr = minErr('jqLite'); - -/** - * Converts snake_case to camelCase. - * Also there is special case for Moz prefix starting with upper case letter. - * @param name Name to normalize - */ -function camelCase(name) { - return name. - replace(SPECIAL_CHARS_REGEXP, function(_, separator, letter, offset) { - return offset ? letter.toUpperCase() : letter; - }). - replace(MOZ_HACK_REGEXP, 'Moz$1'); -} - -///////////////////////////////////////////// -// jQuery mutation patch -// -// In conjunction with bindJQuery intercepts all jQuery's DOM destruction apis and fires a -// $destroy event on all DOM nodes being removed. -// -///////////////////////////////////////////// - -function jqLitePatchJQueryRemove(name, dispatchThis, filterElems, getterIfNoArguments) { - var originalJqFn = jQuery.fn[name]; - originalJqFn = originalJqFn.$original || originalJqFn; - removePatch.$original = originalJqFn; - jQuery.fn[name] = removePatch; - - function removePatch(param) { - // jshint -W040 - var list = filterElems && param ? [this.filter(param)] : [this], - fireEvent = dispatchThis, - set, setIndex, setLength, - element, childIndex, childLength, children; - - if (!getterIfNoArguments || param != null) { - while(list.length) { - set = list.shift(); - for(setIndex = 0, setLength = set.length; setIndex < setLength; setIndex++) { - element = jqLite(set[setIndex]); - if (fireEvent) { - element.triggerHandler('$destroy'); - } else { - fireEvent = !fireEvent; - } - for(childIndex = 0, childLength = (children = element.children()).length; - childIndex < childLength; - childIndex++) { - list.push(jQuery(children[childIndex])); - } - } - } - } - return originalJqFn.apply(this, arguments); - } -} - -///////////////////////////////////////////// -function JQLite(element) { - if (element instanceof JQLite) { - return element; - } - if (!(this instanceof JQLite)) { - if (isString(element) && element.charAt(0) != '<') { - throw jqLiteMinErr('nosel', 'Looking up elements via selectors is not supported by jqLite! See: http://docs.angularjs.org/api/angular.element'); - } - return new JQLite(element); - } - - if (isString(element)) { - var div = document.createElement('div'); - // Read about the NoScope elements here: - // http://msdn.microsoft.com/en-us/library/ms533897(VS.85).aspx - div.innerHTML = '
 
' + element; // IE insanity to make NoScope elements work! - div.removeChild(div.firstChild); // remove the superfluous div - jqLiteAddNodes(this, div.childNodes); - var fragment = jqLite(document.createDocumentFragment()); - fragment.append(this); // detach the elements from the temporary DOM div. - } else { - jqLiteAddNodes(this, element); - } -} - -function jqLiteClone(element) { - return element.cloneNode(true); -} - -function jqLiteDealoc(element){ - jqLiteRemoveData(element); - for ( var i = 0, children = element.childNodes || []; i < children.length; i++) { - jqLiteDealoc(children[i]); - } -} - -function jqLiteOff(element, type, fn, unsupported) { - if (isDefined(unsupported)) throw jqLiteMinErr('offargs', 'jqLite#off() does not support the `selector` argument'); - - var events = jqLiteExpandoStore(element, 'events'), - handle = jqLiteExpandoStore(element, 'handle'); - - if (!handle) return; //no listeners registered - - if (isUndefined(type)) { - forEach(events, function(eventHandler, type) { - removeEventListenerFn(element, type, eventHandler); - delete events[type]; - }); - } else { - forEach(type.split(' '), function(type) { - if (isUndefined(fn)) { - removeEventListenerFn(element, type, events[type]); - delete events[type]; - } else { - arrayRemove(events[type] || [], fn); - } - }); - } -} - -function jqLiteRemoveData(element, name) { - var expandoId = element[jqName], - expandoStore = jqCache[expandoId]; - - if (expandoStore) { - if (name) { - delete jqCache[expandoId].data[name]; - return; - } - - if (expandoStore.handle) { - expandoStore.events.$destroy && expandoStore.handle({}, '$destroy'); - jqLiteOff(element); - } - delete jqCache[expandoId]; - element[jqName] = undefined; // ie does not allow deletion of attributes on elements. - } -} - -function jqLiteExpandoStore(element, key, value) { - var expandoId = element[jqName], - expandoStore = jqCache[expandoId || -1]; - - if (isDefined(value)) { - if (!expandoStore) { - element[jqName] = expandoId = jqNextId(); - expandoStore = jqCache[expandoId] = {}; - } - expandoStore[key] = value; - } else { - return expandoStore && expandoStore[key]; - } -} - -function jqLiteData(element, key, value) { - var data = jqLiteExpandoStore(element, 'data'), - isSetter = isDefined(value), - keyDefined = !isSetter && isDefined(key), - isSimpleGetter = keyDefined && !isObject(key); - - if (!data && !isSimpleGetter) { - jqLiteExpandoStore(element, 'data', data = {}); - } - - if (isSetter) { - data[key] = value; - } else { - if (keyDefined) { - if (isSimpleGetter) { - // don't create data in this case. - return data && data[key]; - } else { - extend(data, key); - } - } else { - return data; - } - } -} - -function jqLiteHasClass(element, selector) { - if (!element.getAttribute) return false; - return ((" " + (element.getAttribute('class') || '') + " ").replace(/[\n\t]/g, " "). - indexOf( " " + selector + " " ) > -1); -} - -function jqLiteRemoveClass(element, cssClasses) { - if (cssClasses && element.setAttribute) { - forEach(cssClasses.split(' '), function(cssClass) { - element.setAttribute('class', trim( - (" " + (element.getAttribute('class') || '') + " ") - .replace(/[\n\t]/g, " ") - .replace(" " + trim(cssClass) + " ", " ")) - ); - }); - } -} - -function jqLiteAddClass(element, cssClasses) { - if (cssClasses && element.setAttribute) { - var existingClasses = (' ' + (element.getAttribute('class') || '') + ' ') - .replace(/[\n\t]/g, " "); - - forEach(cssClasses.split(' '), function(cssClass) { - cssClass = trim(cssClass); - if (existingClasses.indexOf(' ' + cssClass + ' ') === -1) { - existingClasses += cssClass + ' '; - } - }); - - element.setAttribute('class', trim(existingClasses)); - } -} - -function jqLiteAddNodes(root, elements) { - if (elements) { - elements = (!elements.nodeName && isDefined(elements.length) && !isWindow(elements)) - ? elements - : [ elements ]; - for(var i=0; i < elements.length; i++) { - root.push(elements[i]); - } - } -} - -function jqLiteController(element, name) { - return jqLiteInheritedData(element, '$' + (name || 'ngController' ) + 'Controller'); -} - -function jqLiteInheritedData(element, name, value) { - element = jqLite(element); - - // if element is the document object work with the html element instead - // this makes $(document).scope() possible - if(element[0].nodeType == 9) { - element = element.find('html'); - } - var names = isArray(name) ? name : [name]; - - while (element.length) { - - for (var i = 0, ii = names.length; i < ii; i++) { - if ((value = element.data(names[i])) !== undefined) return value; - } - element = element.parent(); - } -} - -function jqLiteEmpty(element) { - for (var i = 0, childNodes = element.childNodes; i < childNodes.length; i++) { - jqLiteDealoc(childNodes[i]); - } - while (element.firstChild) { - element.removeChild(element.firstChild); - } -} - -////////////////////////////////////////// -// Functions which are declared directly. -////////////////////////////////////////// -var JQLitePrototype = JQLite.prototype = { - ready: function(fn) { - var fired = false; - - function trigger() { - if (fired) return; - fired = true; - fn(); - } - - // check if document already is loaded - if (document.readyState === 'complete'){ - setTimeout(trigger); - } else { - this.on('DOMContentLoaded', trigger); // works for modern browsers and IE9 - // we can not use jqLite since we are not done loading and jQuery could be loaded later. - // jshint -W064 - JQLite(window).on('load', trigger); // fallback to window.onload for others - // jshint +W064 - } - }, - toString: function() { - var value = []; - forEach(this, function(e){ value.push('' + e);}); - return '[' + value.join(', ') + ']'; - }, - - eq: function(index) { - return (index >= 0) ? jqLite(this[index]) : jqLite(this[this.length + index]); - }, - - length: 0, - push: push, - sort: [].sort, - splice: [].splice -}; - -////////////////////////////////////////// -// Functions iterating getter/setters. -// these functions return self on setter and -// value on get. -////////////////////////////////////////// -var BOOLEAN_ATTR = {}; -forEach('multiple,selected,checked,disabled,readOnly,required,open'.split(','), function(value) { - BOOLEAN_ATTR[lowercase(value)] = value; -}); -var BOOLEAN_ELEMENTS = {}; -forEach('input,select,option,textarea,button,form,details'.split(','), function(value) { - BOOLEAN_ELEMENTS[uppercase(value)] = true; -}); - -function getBooleanAttrName(element, name) { - // check dom last since we will most likely fail on name - var booleanAttr = BOOLEAN_ATTR[name.toLowerCase()]; - - // booleanAttr is here twice to minimize DOM access - return booleanAttr && BOOLEAN_ELEMENTS[element.nodeName] && booleanAttr; -} - -forEach({ - data: jqLiteData, - inheritedData: jqLiteInheritedData, - - scope: function(element) { - // Can't use jqLiteData here directly so we stay compatible with jQuery! - return jqLite(element).data('$scope') || jqLiteInheritedData(element.parentNode || element, ['$isolateScope', '$scope']); - }, - - isolateScope: function(element) { - // Can't use jqLiteData here directly so we stay compatible with jQuery! - return jqLite(element).data('$isolateScope') || jqLite(element).data('$isolateScopeNoTemplate'); - }, - - controller: jqLiteController , - - injector: function(element) { - return jqLiteInheritedData(element, '$injector'); - }, - - removeAttr: function(element,name) { - element.removeAttribute(name); - }, - - hasClass: jqLiteHasClass, - - css: function(element, name, value) { - name = camelCase(name); - - if (isDefined(value)) { - element.style[name] = value; - } else { - var val; - - if (msie <= 8) { - // this is some IE specific weirdness that jQuery 1.6.4 does not sure why - val = element.currentStyle && element.currentStyle[name]; - if (val === '') val = 'auto'; - } - - val = val || element.style[name]; - - if (msie <= 8) { - // jquery weirdness :-/ - val = (val === '') ? undefined : val; - } - - return val; - } - }, - - attr: function(element, name, value){ - var lowercasedName = lowercase(name); - if (BOOLEAN_ATTR[lowercasedName]) { - if (isDefined(value)) { - if (!!value) { - element[name] = true; - element.setAttribute(name, lowercasedName); - } else { - element[name] = false; - element.removeAttribute(lowercasedName); - } - } else { - return (element[name] || - (element.attributes.getNamedItem(name)|| noop).specified) - ? lowercasedName - : undefined; - } - } else if (isDefined(value)) { - element.setAttribute(name, value); - } else if (element.getAttribute) { - // the extra argument "2" is to get the right thing for a.href in IE, see jQuery code - // some elements (e.g. Document) don't have get attribute, so return undefined - var ret = element.getAttribute(name, 2); - // normalize non-existing attributes to undefined (as jQuery) - return ret === null ? undefined : ret; - } - }, - - prop: function(element, name, value) { - if (isDefined(value)) { - element[name] = value; - } else { - return element[name]; - } - }, - - text: (function() { - var NODE_TYPE_TEXT_PROPERTY = []; - if (msie < 9) { - NODE_TYPE_TEXT_PROPERTY[1] = 'innerText'; /** Element **/ - NODE_TYPE_TEXT_PROPERTY[3] = 'nodeValue'; /** Text **/ - } else { - NODE_TYPE_TEXT_PROPERTY[1] = /** Element **/ - NODE_TYPE_TEXT_PROPERTY[3] = 'textContent'; /** Text **/ - } - getText.$dv = ''; - return getText; - - function getText(element, value) { - var textProp = NODE_TYPE_TEXT_PROPERTY[element.nodeType]; - if (isUndefined(value)) { - return textProp ? element[textProp] : ''; - } - element[textProp] = value; - } - })(), - - val: function(element, value) { - if (isUndefined(value)) { - if (nodeName_(element) === 'SELECT' && element.multiple) { - var result = []; - forEach(element.options, function (option) { - if (option.selected) { - result.push(option.value || option.text); - } - }); - return result.length === 0 ? null : result; - } - return element.value; - } - element.value = value; - }, - - html: function(element, value) { - if (isUndefined(value)) { - return element.innerHTML; - } - for (var i = 0, childNodes = element.childNodes; i < childNodes.length; i++) { - jqLiteDealoc(childNodes[i]); - } - element.innerHTML = value; - }, - - empty: jqLiteEmpty -}, function(fn, name){ - /** - * Properties: writes return selection, reads return first value - */ - JQLite.prototype[name] = function(arg1, arg2) { - var i, key; - - // jqLiteHasClass has only two arguments, but is a getter-only fn, so we need to special-case it - // in a way that survives minification. - // jqLiteEmpty takes no arguments but is a setter. - if (fn !== jqLiteEmpty && - (((fn.length == 2 && (fn !== jqLiteHasClass && fn !== jqLiteController)) ? arg1 : arg2) === undefined)) { - if (isObject(arg1)) { - - // we are a write, but the object properties are the key/values - for (i = 0; i < this.length; i++) { - if (fn === jqLiteData) { - // data() takes the whole object in jQuery - fn(this[i], arg1); - } else { - for (key in arg1) { - fn(this[i], key, arg1[key]); - } - } - } - // return self for chaining - return this; - } else { - // we are a read, so read the first child. - var value = fn.$dv; - // Only if we have $dv do we iterate over all, otherwise it is just the first element. - var jj = (value === undefined) ? Math.min(this.length, 1) : this.length; - for (var j = 0; j < jj; j++) { - var nodeValue = fn(this[j], arg1, arg2); - value = value ? value + nodeValue : nodeValue; - } - return value; - } - } else { - // we are a write, so apply to all children - for (i = 0; i < this.length; i++) { - fn(this[i], arg1, arg2); - } - // return self for chaining - return this; - } - }; -}); - -function createEventHandler(element, events) { - var eventHandler = function (event, type) { - if (!event.preventDefault) { - event.preventDefault = function() { - event.returnValue = false; //ie - }; - } - - if (!event.stopPropagation) { - event.stopPropagation = function() { - event.cancelBubble = true; //ie - }; - } - - if (!event.target) { - event.target = event.srcElement || document; - } - - if (isUndefined(event.defaultPrevented)) { - var prevent = event.preventDefault; - event.preventDefault = function() { - event.defaultPrevented = true; - prevent.call(event); - }; - event.defaultPrevented = false; - } - - event.isDefaultPrevented = function() { - return event.defaultPrevented || event.returnValue === false; - }; - - // Copy event handlers in case event handlers array is modified during execution. - var eventHandlersCopy = shallowCopy(events[type || event.type] || []); - - forEach(eventHandlersCopy, function(fn) { - fn.call(element, event); - }); - - // Remove monkey-patched methods (IE), - // as they would cause memory leaks in IE8. - if (msie <= 8) { - // IE7/8 does not allow to delete property on native object - event.preventDefault = null; - event.stopPropagation = null; - event.isDefaultPrevented = null; - } else { - // It shouldn't affect normal browsers (native methods are defined on prototype). - delete event.preventDefault; - delete event.stopPropagation; - delete event.isDefaultPrevented; - } - }; - eventHandler.elem = element; - return eventHandler; -} - -////////////////////////////////////////// -// Functions iterating traversal. -// These functions chain results into a single -// selector. -////////////////////////////////////////// -forEach({ - removeData: jqLiteRemoveData, - - dealoc: jqLiteDealoc, - - on: function onFn(element, type, fn, unsupported){ - if (isDefined(unsupported)) throw jqLiteMinErr('onargs', 'jqLite#on() does not support the `selector` or `eventData` parameters'); - - var events = jqLiteExpandoStore(element, 'events'), - handle = jqLiteExpandoStore(element, 'handle'); - - if (!events) jqLiteExpandoStore(element, 'events', events = {}); - if (!handle) jqLiteExpandoStore(element, 'handle', handle = createEventHandler(element, events)); - - forEach(type.split(' '), function(type){ - var eventFns = events[type]; - - if (!eventFns) { - if (type == 'mouseenter' || type == 'mouseleave') { - var contains = document.body.contains || document.body.compareDocumentPosition ? - function( a, b ) { - // jshint bitwise: false - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - )); - } : - function( a, b ) { - if ( b ) { - while ( (b = b.parentNode) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - events[type] = []; - - // Refer to jQuery's implementation of mouseenter & mouseleave - // Read about mouseenter and mouseleave: - // http://www.quirksmode.org/js/events_mouse.html#link8 - var eventmap = { mouseleave : "mouseout", mouseenter : "mouseover"}; - - onFn(element, eventmap[type], function(event) { - var target = this, related = event.relatedTarget; - // For mousenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || (related !== target && !contains(target, related)) ){ - handle(event, type); - } - }); - - } else { - addEventListenerFn(element, type, handle); - events[type] = []; - } - eventFns = events[type]; - } - eventFns.push(fn); - }); - }, - - off: jqLiteOff, - - one: function(element, type, fn) { - element = jqLite(element); - - //add the listener twice so that when it is called - //you can remove the original function and still be - //able to call element.off(ev, fn) normally - element.on(type, function onFn() { - element.off(type, fn); - element.off(type, onFn); - }); - element.on(type, fn); - }, - - replaceWith: function(element, replaceNode) { - var index, parent = element.parentNode; - jqLiteDealoc(element); - forEach(new JQLite(replaceNode), function(node){ - if (index) { - parent.insertBefore(node, index.nextSibling); - } else { - parent.replaceChild(node, element); - } - index = node; - }); - }, - - children: function(element) { - var children = []; - forEach(element.childNodes, function(element){ - if (element.nodeType === 1) - children.push(element); - }); - return children; - }, - - contents: function(element) { - return element.childNodes || []; - }, - - append: function(element, node) { - forEach(new JQLite(node), function(child){ - if (element.nodeType === 1 || element.nodeType === 11) { - element.appendChild(child); - } - }); - }, - - prepend: function(element, node) { - if (element.nodeType === 1) { - var index = element.firstChild; - forEach(new JQLite(node), function(child){ - element.insertBefore(child, index); - }); - } - }, - - wrap: function(element, wrapNode) { - wrapNode = jqLite(wrapNode)[0]; - var parent = element.parentNode; - if (parent) { - parent.replaceChild(wrapNode, element); - } - wrapNode.appendChild(element); - }, - - remove: function(element) { - jqLiteDealoc(element); - var parent = element.parentNode; - if (parent) parent.removeChild(element); - }, - - after: function(element, newElement) { - var index = element, parent = element.parentNode; - forEach(new JQLite(newElement), function(node){ - parent.insertBefore(node, index.nextSibling); - index = node; - }); - }, - - addClass: jqLiteAddClass, - removeClass: jqLiteRemoveClass, - - toggleClass: function(element, selector, condition) { - if (isUndefined(condition)) { - condition = !jqLiteHasClass(element, selector); - } - (condition ? jqLiteAddClass : jqLiteRemoveClass)(element, selector); - }, - - parent: function(element) { - var parent = element.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - - next: function(element) { - if (element.nextElementSibling) { - return element.nextElementSibling; - } - - // IE8 doesn't have nextElementSibling - var elm = element.nextSibling; - while (elm != null && elm.nodeType !== 1) { - elm = elm.nextSibling; - } - return elm; - }, - - find: function(element, selector) { - if (element.getElementsByTagName) { - return element.getElementsByTagName(selector); - } else { - return []; - } - }, - - clone: jqLiteClone, - - triggerHandler: function(element, eventName, eventData) { - var eventFns = (jqLiteExpandoStore(element, 'events') || {})[eventName]; - - eventData = eventData || []; - - var event = [{ - preventDefault: noop, - stopPropagation: noop - }]; - - forEach(eventFns, function(fn) { - fn.apply(element, event.concat(eventData)); - }); - } -}, function(fn, name){ - /** - * chaining functions - */ - JQLite.prototype[name] = function(arg1, arg2, arg3) { - var value; - for(var i=0; i < this.length; i++) { - if (isUndefined(value)) { - value = fn(this[i], arg1, arg2, arg3); - if (isDefined(value)) { - // any function which returns a value needs to be wrapped - value = jqLite(value); - } - } else { - jqLiteAddNodes(value, fn(this[i], arg1, arg2, arg3)); - } - } - return isDefined(value) ? value : this; - }; - - // bind legacy bind/unbind to on/off - JQLite.prototype.bind = JQLite.prototype.on; - JQLite.prototype.unbind = JQLite.prototype.off; -}); - -/** - * Computes a hash of an 'obj'. - * Hash of a: - * string is string - * number is number as string - * object is either result of calling $$hashKey function on the object or uniquely generated id, - * that is also assigned to the $$hashKey property of the object. - * - * @param obj - * @returns {string} hash string such that the same input will have the same hash string. - * The resulting string key is in 'type:hashKey' format. - */ -function hashKey(obj) { - var objType = typeof obj, - key; - - if (objType == 'object' && obj !== null) { - if (typeof (key = obj.$$hashKey) == 'function') { - // must invoke on object to keep the right this - key = obj.$$hashKey(); - } else if (key === undefined) { - key = obj.$$hashKey = nextUid(); - } - } else { - key = obj; - } - - return objType + ':' + key; -} - -/** - * HashMap which can use objects as keys - */ -function HashMap(array){ - forEach(array, this.put, this); -} -HashMap.prototype = { - /** - * Store key value pair - * @param key key to store can be any type - * @param value value to store can be any type - */ - put: function(key, value) { - this[hashKey(key)] = value; - }, - - /** - * @param key - * @returns the value for the key - */ - get: function(key) { - return this[hashKey(key)]; - }, - - /** - * Remove the key/value pair - * @param key - */ - remove: function(key) { - var value = this[key = hashKey(key)]; - delete this[key]; - return value; - } -}; - -/** - * @ngdoc function - * @name angular.injector - * @function - * - * @description - * Creates an injector function that can be used for retrieving services as well as for - * dependency injection (see {@link guide/di dependency injection}). - * - - * @param {Array.} modules A list of module functions or their aliases. See - * {@link angular.module}. The `ng` module must be explicitly added. - * @returns {function()} Injector function. See {@link AUTO.$injector $injector}. - * - * @example - * Typical usage - *
- *   // create an injector
- *   var $injector = angular.injector(['ng']);
- *
- *   // use the injector to kick off your application
- *   // use the type inference to auto inject arguments, or use implicit injection
- *   $injector.invoke(function($rootScope, $compile, $document){
- *     $compile($document)($rootScope);
- *     $rootScope.$digest();
- *   });
- * 
- * - * Sometimes you want to get access to the injector of a currently running Angular app - * from outside Angular. Perhaps, you want to inject and compile some markup after the - * application has been bootstrapped. You can do this using extra `injector()` added - * to JQuery/jqLite elements. See {@link angular.element}. - * - * *This is fairly rare but could be the case if a third party library is injecting the - * markup.* - * - * In the following example a new block of HTML containing a `ng-controller` - * directive is added to the end of the document body by JQuery. We then compile and link - * it into the current AngularJS scope. - * - *
- * var $div = $('
{{content.label}}
'); - * $(document.body).append($div); - * - * angular.element(document).injector().invoke(function($compile) { - * var scope = angular.element($div).scope(); - * $compile($div)(scope); - * }); - *
- */ - - -/** - * @ngdoc overview - * @name AUTO - * @description - * - * Implicit module which gets automatically added to each {@link AUTO.$injector $injector}. - */ - -var FN_ARGS = /^function\s*[^\(]*\(\s*([^\)]*)\)/m; -var FN_ARG_SPLIT = /,/; -var FN_ARG = /^\s*(_?)(\S+?)\1\s*$/; -var STRIP_COMMENTS = /((\/\/.*$)|(\/\*[\s\S]*?\*\/))/mg; -var $injectorMinErr = minErr('$injector'); -function annotate(fn) { - var $inject, - fnText, - argDecl, - last; - - if (typeof fn == 'function') { - if (!($inject = fn.$inject)) { - $inject = []; - if (fn.length) { - fnText = fn.toString().replace(STRIP_COMMENTS, ''); - argDecl = fnText.match(FN_ARGS); - forEach(argDecl[1].split(FN_ARG_SPLIT), function(arg){ - arg.replace(FN_ARG, function(all, underscore, name){ - $inject.push(name); - }); - }); - } - fn.$inject = $inject; - } - } else if (isArray(fn)) { - last = fn.length - 1; - assertArgFn(fn[last], 'fn'); - $inject = fn.slice(0, last); - } else { - assertArgFn(fn, 'fn', true); - } - return $inject; -} - -/////////////////////////////////////// - -/** - * @ngdoc object - * @name AUTO.$injector - * @function - * - * @description - * - * `$injector` is used to retrieve object instances as defined by - * {@link AUTO.$provide provider}, instantiate types, invoke methods, - * and load modules. - * - * The following always holds true: - * - *
- *   var $injector = angular.injector();
- *   expect($injector.get('$injector')).toBe($injector);
- *   expect($injector.invoke(function($injector){
- *     return $injector;
- *   }).toBe($injector);
- * 
- * - * # Injection Function Annotation - * - * JavaScript does not have annotations, and annotations are needed for dependency injection. The - * following are all valid ways of annotating function with injection arguments and are equivalent. - * - *
- *   // inferred (only works if code not minified/obfuscated)
- *   $injector.invoke(function(serviceA){});
- *
- *   // annotated
- *   function explicit(serviceA) {};
- *   explicit.$inject = ['serviceA'];
- *   $injector.invoke(explicit);
- *
- *   // inline
- *   $injector.invoke(['serviceA', function(serviceA){}]);
- * 
- * - * ## Inference - * - * In JavaScript calling `toString()` on a function returns the function definition. The definition - * can then be parsed and the function arguments can be extracted. *NOTE:* This does not work with - * minification, and obfuscation tools since these tools change the argument names. - * - * ## `$inject` Annotation - * By adding a `$inject` property onto a function the injection parameters can be specified. - * - * ## Inline - * As an array of injection names, where the last item in the array is the function to call. - */ - -/** - * @ngdoc method - * @name AUTO.$injector#get - * @methodOf AUTO.$injector - * - * @description - * Return an instance of the service. - * - * @param {string} name The name of the instance to retrieve. - * @return {*} The instance. - */ - -/** - * @ngdoc method - * @name AUTO.$injector#invoke - * @methodOf AUTO.$injector - * - * @description - * Invoke the method and supply the method arguments from the `$injector`. - * - * @param {!function} fn The function to invoke. Function parameters are injected according to the - * {@link guide/di $inject Annotation} rules. - * @param {Object=} self The `this` for the invoked method. - * @param {Object=} locals Optional object. If preset then any argument names are read from this - * object first, before the `$injector` is consulted. - * @returns {*} the value returned by the invoked `fn` function. - */ - -/** - * @ngdoc method - * @name AUTO.$injector#has - * @methodOf AUTO.$injector - * - * @description - * Allows the user to query if the particular service exist. - * - * @param {string} Name of the service to query. - * @returns {boolean} returns true if injector has given service. - */ - -/** - * @ngdoc method - * @name AUTO.$injector#instantiate - * @methodOf AUTO.$injector - * @description - * Create a new instance of JS type. The method takes a constructor function invokes the new - * operator and supplies all of the arguments to the constructor function as specified by the - * constructor annotation. - * - * @param {function} Type Annotated constructor function. - * @param {Object=} locals Optional object. If preset then any argument names are read from this - * object first, before the `$injector` is consulted. - * @returns {Object} new instance of `Type`. - */ - -/** - * @ngdoc method - * @name AUTO.$injector#annotate - * @methodOf AUTO.$injector - * - * @description - * Returns an array of service names which the function is requesting for injection. This API is - * used by the injector to determine which services need to be injected into the function when the - * function is invoked. There are three ways in which the function can be annotated with the needed - * dependencies. - * - * # Argument names - * - * The simplest form is to extract the dependencies from the arguments of the function. This is done - * by converting the function into a string using `toString()` method and extracting the argument - * names. - *
- *   // Given
- *   function MyController($scope, $route) {
- *     // ...
- *   }
- *
- *   // Then
- *   expect(injector.annotate(MyController)).toEqual(['$scope', '$route']);
- * 
- * - * This method does not work with code minification / obfuscation. For this reason the following - * annotation strategies are supported. - * - * # The `$inject` property - * - * If a function has an `$inject` property and its value is an array of strings, then the strings - * represent names of services to be injected into the function. - *
- *   // Given
- *   var MyController = function(obfuscatedScope, obfuscatedRoute) {
- *     // ...
- *   }
- *   // Define function dependencies
- *   MyController['$inject'] = ['$scope', '$route'];
- *
- *   // Then
- *   expect(injector.annotate(MyController)).toEqual(['$scope', '$route']);
- * 
- * - * # The array notation - * - * It is often desirable to inline Injected functions and that's when setting the `$inject` property - * is very inconvenient. In these situations using the array notation to specify the dependencies in - * a way that survives minification is a better choice: - * - *
- *   // We wish to write this (not minification / obfuscation safe)
- *   injector.invoke(function($compile, $rootScope) {
- *     // ...
- *   });
- *
- *   // We are forced to write break inlining
- *   var tmpFn = function(obfuscatedCompile, obfuscatedRootScope) {
- *     // ...
- *   };
- *   tmpFn.$inject = ['$compile', '$rootScope'];
- *   injector.invoke(tmpFn);
- *
- *   // To better support inline function the inline annotation is supported
- *   injector.invoke(['$compile', '$rootScope', function(obfCompile, obfRootScope) {
- *     // ...
- *   }]);
- *
- *   // Therefore
- *   expect(injector.annotate(
- *      ['$compile', '$rootScope', function(obfus_$compile, obfus_$rootScope) {}])
- *    ).toEqual(['$compile', '$rootScope']);
- * 
- * - * @param {function|Array.} fn Function for which dependent service names need to - * be retrieved as described above. - * - * @returns {Array.} The names of the services which the function requires. - */ - - - - -/** - * @ngdoc object - * @name AUTO.$provide - * - * @description - * - * The {@link AUTO.$provide $provide} service has a number of methods for registering components - * with the {@link AUTO.$injector $injector}. Many of these functions are also exposed on - * {@link angular.Module}. - * - * An Angular **service** is a singleton object created by a **service factory**. These **service - * factories** are functions which, in turn, are created by a **service provider**. - * The **service providers** are constructor functions. When instantiated they must contain a - * property called `$get`, which holds the **service factory** function. - * - * When you request a service, the {@link AUTO.$injector $injector} is responsible for finding the - * correct **service provider**, instantiating it and then calling its `$get` **service factory** - * function to get the instance of the **service**. - * - * Often services have no configuration options and there is no need to add methods to the service - * provider. The provider will be no more than a constructor function with a `$get` property. For - * these cases the {@link AUTO.$provide $provide} service has additional helper methods to register - * services without specifying a provider. - * - * * {@link AUTO.$provide#methods_provider provider(provider)} - registers a **service provider** with the - * {@link AUTO.$injector $injector} - * * {@link AUTO.$provide#methods_constant constant(obj)} - registers a value/object that can be accessed by - * providers and services. - * * {@link AUTO.$provide#methods_value value(obj)} - registers a value/object that can only be accessed by - * services, not providers. - * * {@link AUTO.$provide#methods_factory factory(fn)} - registers a service **factory function**, `fn`, - * that will be wrapped in a **service provider** object, whose `$get` property will contain the - * given factory function. - * * {@link AUTO.$provide#methods_service service(class)} - registers a **constructor function**, `class` that - * that will be wrapped in a **service provider** object, whose `$get` property will instantiate - * a new object using the given constructor function. - * - * See the individual methods for more information and examples. - */ - -/** - * @ngdoc method - * @name AUTO.$provide#provider - * @methodOf AUTO.$provide - * @description - * - * Register a **provider function** with the {@link AUTO.$injector $injector}. Provider functions - * are constructor functions, whose instances are responsible for "providing" a factory for a - * service. - * - * Service provider names start with the name of the service they provide followed by `Provider`. - * For example, the {@link ng.$log $log} service has a provider called - * {@link ng.$logProvider $logProvider}. - * - * Service provider objects can have additional methods which allow configuration of the provider - * and its service. Importantly, you can configure what kind of service is created by the `$get` - * method, or how that service will act. For example, the {@link ng.$logProvider $logProvider} has a - * method {@link ng.$logProvider#debugEnabled debugEnabled} - * which lets you specify whether the {@link ng.$log $log} service will log debug messages to the - * console or not. - * - * @param {string} name The name of the instance. NOTE: the provider will be available under `name + - 'Provider'` key. - * @param {(Object|function())} provider If the provider is: - * - * - `Object`: then it should have a `$get` method. The `$get` method will be invoked using - * {@link AUTO.$injector#invoke $injector.invoke()} when an instance needs to be - * created. - * - `Constructor`: a new instance of the provider will be created using - * {@link AUTO.$injector#instantiate $injector.instantiate()}, then treated as - * `object`. - * - * @returns {Object} registered provider instance - - * @example - * - * The following example shows how to create a simple event tracking service and register it using - * {@link AUTO.$provide#methods_provider $provide.provider()}. - * - *
- *  // Define the eventTracker provider
- *  function EventTrackerProvider() {
- *    var trackingUrl = '/track';
- *
- *    // A provider method for configuring where the tracked events should been saved
- *    this.setTrackingUrl = function(url) {
- *      trackingUrl = url;
- *    };
- *
- *    // The service factory function
- *    this.$get = ['$http', function($http) {
- *      var trackedEvents = {};
- *      return {
- *        // Call this to track an event
- *        event: function(event) {
- *          var count = trackedEvents[event] || 0;
- *          count += 1;
- *          trackedEvents[event] = count;
- *          return count;
- *        },
- *        // Call this to save the tracked events to the trackingUrl
- *        save: function() {
- *          $http.post(trackingUrl, trackedEvents);
- *        }
- *      };
- *    }];
- *  }
- *
- *  describe('eventTracker', function() {
- *    var postSpy;
- *
- *    beforeEach(module(function($provide) {
- *      // Register the eventTracker provider
- *      $provide.provider('eventTracker', EventTrackerProvider);
- *    }));
- *
- *    beforeEach(module(function(eventTrackerProvider) {
- *      // Configure eventTracker provider
- *      eventTrackerProvider.setTrackingUrl('/custom-track');
- *    }));
- *
- *    it('tracks events', inject(function(eventTracker) {
- *      expect(eventTracker.event('login')).toEqual(1);
- *      expect(eventTracker.event('login')).toEqual(2);
- *    }));
- *
- *    it('saves to the tracking url', inject(function(eventTracker, $http) {
- *      postSpy = spyOn($http, 'post');
- *      eventTracker.event('login');
- *      eventTracker.save();
- *      expect(postSpy).toHaveBeenCalled();
- *      expect(postSpy.mostRecentCall.args[0]).not.toEqual('/track');
- *      expect(postSpy.mostRecentCall.args[0]).toEqual('/custom-track');
- *      expect(postSpy.mostRecentCall.args[1]).toEqual({ 'login': 1 });
- *    }));
- *  });
- * 
- */ - -/** - * @ngdoc method - * @name AUTO.$provide#factory - * @methodOf AUTO.$provide - * @description - * - * Register a **service factory**, which will be called to return the service instance. - * This is short for registering a service where its provider consists of only a `$get` property, - * which is the given service factory function. - * You should use {@link AUTO.$provide#factory $provide.factory(getFn)} if you do not need to - * configure your service in a provider. - * - * @param {string} name The name of the instance. - * @param {function()} $getFn The $getFn for the instance creation. Internally this is a short hand - * for `$provide.provider(name, {$get: $getFn})`. - * @returns {Object} registered provider instance - * - * @example - * Here is an example of registering a service - *
- *   $provide.factory('ping', ['$http', function($http) {
- *     return function ping() {
- *       return $http.send('/ping');
- *     };
- *   }]);
- * 
- * You would then inject and use this service like this: - *
- *   someModule.controller('Ctrl', ['ping', function(ping) {
- *     ping();
- *   }]);
- * 
- */ - - -/** - * @ngdoc method - * @name AUTO.$provide#service - * @methodOf AUTO.$provide - * @description - * - * Register a **service constructor**, which will be invoked with `new` to create the service - * instance. - * This is short for registering a service where its provider's `$get` property is the service - * constructor function that will be used to instantiate the service instance. - * - * You should use {@link AUTO.$provide#methods_service $provide.service(class)} if you define your service - * as a type/class. This is common when using {@link http://coffeescript.org CoffeeScript}. - * - * @param {string} name The name of the instance. - * @param {Function} constructor A class (constructor function) that will be instantiated. - * @returns {Object} registered provider instance - * - * @example - * Here is an example of registering a service using - * {@link AUTO.$provide#methods_service $provide.service(class)} that is defined as a CoffeeScript class. - *
- *   class Ping
- *     constructor: (@$http) ->
- *     send: () =>
- *       @$http.get('/ping')
- *
- *   $provide.service('ping', ['$http', Ping])
- * 
- * You would then inject and use this service like this: - *
- *   someModule.controller 'Ctrl', ['ping', (ping) ->
- *     ping.send()
- *   ]
- * 
- */ - - -/** - * @ngdoc method - * @name AUTO.$provide#value - * @methodOf AUTO.$provide - * @description - * - * Register a **value service** with the {@link AUTO.$injector $injector}, such as a string, a - * number, an array, an object or a function. This is short for registering a service where its - * provider's `$get` property is a factory function that takes no arguments and returns the **value - * service**. - * - * Value services are similar to constant services, except that they cannot be injected into a - * module configuration function (see {@link angular.Module#config}) but they can be overridden by - * an Angular - * {@link AUTO.$provide#decorator decorator}. - * - * @param {string} name The name of the instance. - * @param {*} value The value. - * @returns {Object} registered provider instance - * - * @example - * Here are some examples of creating value services. - *
- *   $provide.value('ADMIN_USER', 'admin');
- *
- *   $provide.value('RoleLookup', { admin: 0, writer: 1, reader: 2 });
- *
- *   $provide.value('halfOf', function(value) {
- *     return value / 2;
- *   });
- * 
- */ - - -/** - * @ngdoc method - * @name AUTO.$provide#constant - * @methodOf AUTO.$provide - * @description - * - * Register a **constant service**, such as a string, a number, an array, an object or a function, - * with the {@link AUTO.$injector $injector}. Unlike {@link AUTO.$provide#value value} it can be - * injected into a module configuration function (see {@link angular.Module#config}) and it cannot - * be overridden by an Angular {@link AUTO.$provide#decorator decorator}. - * - * @param {string} name The name of the constant. - * @param {*} value The constant value. - * @returns {Object} registered instance - * - * @example - * Here a some examples of creating constants: - *
- *   $provide.constant('SHARD_HEIGHT', 306);
- *
- *   $provide.constant('MY_COLOURS', ['red', 'blue', 'grey']);
- *
- *   $provide.constant('double', function(value) {
- *     return value * 2;
- *   });
- * 
- */ - - -/** - * @ngdoc method - * @name AUTO.$provide#decorator - * @methodOf AUTO.$provide - * @description - * - * Register a **service decorator** with the {@link AUTO.$injector $injector}. A service decorator - * intercepts the creation of a service, allowing it to override or modify the behaviour of the - * service. The object returned by the decorator may be the original service, or a new service - * object which replaces or wraps and delegates to the original service. - * - * @param {string} name The name of the service to decorate. - * @param {function()} decorator This function will be invoked when the service needs to be - * instantiated and should return the decorated service instance. The function is called using - * the {@link AUTO.$injector#invoke injector.invoke} method and is therefore fully injectable. - * Local injection arguments: - * - * * `$delegate` - The original service instance, which can be monkey patched, configured, - * decorated or delegated to. - * - * @example - * Here we decorate the {@link ng.$log $log} service to convert warnings to errors by intercepting - * calls to {@link ng.$log#error $log.warn()}. - *
- *   $provider.decorator('$log', ['$delegate', function($delegate) {
- *     $delegate.warn = $delegate.error;
- *     return $delegate;
- *   }]);
- * 
- */ - - -function createInjector(modulesToLoad) { - var INSTANTIATING = {}, - providerSuffix = 'Provider', - path = [], - loadedModules = new HashMap(), - providerCache = { - $provide: { - provider: supportObject(provider), - factory: supportObject(factory), - service: supportObject(service), - value: supportObject(value), - constant: supportObject(constant), - decorator: decorator - } - }, - providerInjector = (providerCache.$injector = - createInternalInjector(providerCache, function() { - throw $injectorMinErr('unpr', "Unknown provider: {0}", path.join(' <- ')); - })), - instanceCache = {}, - instanceInjector = (instanceCache.$injector = - createInternalInjector(instanceCache, function(servicename) { - var provider = providerInjector.get(servicename + providerSuffix); - return instanceInjector.invoke(provider.$get, provider); - })); - - - forEach(loadModules(modulesToLoad), function(fn) { instanceInjector.invoke(fn || noop); }); - - return instanceInjector; - - //////////////////////////////////// - // $provider - //////////////////////////////////// - - function supportObject(delegate) { - return function(key, value) { - if (isObject(key)) { - forEach(key, reverseParams(delegate)); - } else { - return delegate(key, value); - } - }; - } - - function provider(name, provider_) { - assertNotHasOwnProperty(name, 'service'); - if (isFunction(provider_) || isArray(provider_)) { - provider_ = providerInjector.instantiate(provider_); - } - if (!provider_.$get) { - throw $injectorMinErr('pget', "Provider '{0}' must define $get factory method.", name); - } - return providerCache[name + providerSuffix] = provider_; - } - - function factory(name, factoryFn) { return provider(name, { $get: factoryFn }); } - - function service(name, constructor) { - return factory(name, ['$injector', function($injector) { - return $injector.instantiate(constructor); - }]); - } - - function value(name, val) { return factory(name, valueFn(val)); } - - function constant(name, value) { - assertNotHasOwnProperty(name, 'constant'); - providerCache[name] = value; - instanceCache[name] = value; - } - - function decorator(serviceName, decorFn) { - var origProvider = providerInjector.get(serviceName + providerSuffix), - orig$get = origProvider.$get; - - origProvider.$get = function() { - var origInstance = instanceInjector.invoke(orig$get, origProvider); - return instanceInjector.invoke(decorFn, null, {$delegate: origInstance}); - }; - } - - //////////////////////////////////// - // Module Loading - //////////////////////////////////// - function loadModules(modulesToLoad){ - var runBlocks = [], moduleFn, invokeQueue, i, ii; - forEach(modulesToLoad, function(module) { - if (loadedModules.get(module)) return; - loadedModules.put(module, true); - - try { - if (isString(module)) { - moduleFn = angularModule(module); - runBlocks = runBlocks.concat(loadModules(moduleFn.requires)).concat(moduleFn._runBlocks); - - for(invokeQueue = moduleFn._invokeQueue, i = 0, ii = invokeQueue.length; i < ii; i++) { - var invokeArgs = invokeQueue[i], - provider = providerInjector.get(invokeArgs[0]); - - provider[invokeArgs[1]].apply(provider, invokeArgs[2]); - } - } else if (isFunction(module)) { - runBlocks.push(providerInjector.invoke(module)); - } else if (isArray(module)) { - runBlocks.push(providerInjector.invoke(module)); - } else { - assertArgFn(module, 'module'); - } - } catch (e) { - if (isArray(module)) { - module = module[module.length - 1]; - } - if (e.message && e.stack && e.stack.indexOf(e.message) == -1) { - // Safari & FF's stack traces don't contain error.message content - // unlike those of Chrome and IE - // So if stack doesn't contain message, we create a new string that contains both. - // Since error.stack is read-only in Safari, I'm overriding e and not e.stack here. - /* jshint -W022 */ - e = e.message + '\n' + e.stack; - } - throw $injectorMinErr('modulerr', "Failed to instantiate module {0} due to:\n{1}", - module, e.stack || e.message || e); - } - }); - return runBlocks; - } - - //////////////////////////////////// - // internal Injector - //////////////////////////////////// - - function createInternalInjector(cache, factory) { - - function getService(serviceName) { - if (cache.hasOwnProperty(serviceName)) { - if (cache[serviceName] === INSTANTIATING) { - throw $injectorMinErr('cdep', 'Circular dependency found: {0}', path.join(' <- ')); - } - return cache[serviceName]; - } else { - try { - path.unshift(serviceName); - cache[serviceName] = INSTANTIATING; - return cache[serviceName] = factory(serviceName); - } finally { - path.shift(); - } - } - } - - function invoke(fn, self, locals){ - var args = [], - $inject = annotate(fn), - length, i, - key; - - for(i = 0, length = $inject.length; i < length; i++) { - key = $inject[i]; - if (typeof key !== 'string') { - throw $injectorMinErr('itkn', - 'Incorrect injection token! Expected service name as string, got {0}', key); - } - args.push( - locals && locals.hasOwnProperty(key) - ? locals[key] - : getService(key) - ); - } - if (!fn.$inject) { - // this means that we must be an array. - fn = fn[length]; - } - - // http://jsperf.com/angularjs-invoke-apply-vs-switch - // #5388 - return fn.apply(self, args); - } - - function instantiate(Type, locals) { - var Constructor = function() {}, - instance, returnedValue; - - // Check if Type is annotated and use just the given function at n-1 as parameter - // e.g. someModule.factory('greeter', ['$window', function(renamed$window) {}]); - Constructor.prototype = (isArray(Type) ? Type[Type.length - 1] : Type).prototype; - instance = new Constructor(); - returnedValue = invoke(Type, instance, locals); - - return isObject(returnedValue) || isFunction(returnedValue) ? returnedValue : instance; - } - - return { - invoke: invoke, - instantiate: instantiate, - get: getService, - annotate: annotate, - has: function(name) { - return providerCache.hasOwnProperty(name + providerSuffix) || cache.hasOwnProperty(name); - } - }; - } -} - -/** - * @ngdoc function - * @name ng.$anchorScroll - * @requires $window - * @requires $location - * @requires $rootScope - * - * @description - * When called, it checks current value of `$location.hash()` and scroll to related element, - * according to rules specified in - * {@link http://dev.w3.org/html5/spec/Overview.html#the-indicated-part-of-the-document Html5 spec}. - * - * It also watches the `$location.hash()` and scrolls whenever it changes to match any anchor. - * This can be disabled by calling `$anchorScrollProvider.disableAutoScrolling()`. - * - * @example - - -
- Go to bottom - You're at the bottom! -
- - - function ScrollCtrl($scope, $location, $anchorScroll) { - $scope.gotoBottom = function (){ - // set the location.hash to the id of - // the element you wish to scroll to. - $location.hash('bottom'); - - // call $anchorScroll() - $anchorScroll(); - } - } - - - #scrollArea { - height: 350px; - overflow: auto; - } - - #bottom { - display: block; - margin-top: 2000px; - } - - - */ -function $AnchorScrollProvider() { - - var autoScrollingEnabled = true; - - this.disableAutoScrolling = function() { - autoScrollingEnabled = false; - }; - - this.$get = ['$window', '$location', '$rootScope', function($window, $location, $rootScope) { - var document = $window.document; - - // helper function to get first anchor from a NodeList - // can't use filter.filter, as it accepts only instances of Array - // and IE can't convert NodeList to an array using [].slice - // TODO(vojta): use filter if we change it to accept lists as well - function getFirstAnchor(list) { - var result = null; - forEach(list, function(element) { - if (!result && lowercase(element.nodeName) === 'a') result = element; - }); - return result; - } - - function scroll() { - var hash = $location.hash(), elm; - - // empty hash, scroll to the top of the page - if (!hash) $window.scrollTo(0, 0); - - // element with given id - else if ((elm = document.getElementById(hash))) elm.scrollIntoView(); - - // first anchor with given name :-D - else if ((elm = getFirstAnchor(document.getElementsByName(hash)))) elm.scrollIntoView(); - - // no element and hash == 'top', scroll to the top of the page - else if (hash === 'top') $window.scrollTo(0, 0); - } - - // does not scroll when user clicks on anchor link that is currently on - // (no url change, no $location.hash() change), browser native does scroll - if (autoScrollingEnabled) { - $rootScope.$watch(function autoScrollWatch() {return $location.hash();}, - function autoScrollWatchAction() { - $rootScope.$evalAsync(scroll); - }); - } - - return scroll; - }]; -} - -var $animateMinErr = minErr('$animate'); - -/** - * @ngdoc object - * @name ng.$animateProvider - * - * @description - * Default implementation of $animate that doesn't perform any animations, instead just - * synchronously performs DOM - * updates and calls done() callbacks. - * - * In order to enable animations the ngAnimate module has to be loaded. - * - * To see the functional implementation check out src/ngAnimate/animate.js - */ -var $AnimateProvider = ['$provide', function($provide) { - - - this.$$selectors = {}; - - - /** - * @ngdoc function - * @name ng.$animateProvider#register - * @methodOf ng.$animateProvider - * - * @description - * Registers a new injectable animation factory function. The factory function produces the - * animation object which contains callback functions for each event that is expected to be - * animated. - * - * * `eventFn`: `function(Element, doneFunction)` The element to animate, the `doneFunction` - * must be called once the element animation is complete. If a function is returned then the - * animation service will use this function to cancel the animation whenever a cancel event is - * triggered. - * - * - *
-   *   return {
-     *     eventFn : function(element, done) {
-     *       //code to run the animation
-     *       //once complete, then run done()
-     *       return function cancellationFunction() {
-     *         //code to cancel the animation
-     *       }
-     *     }
-     *   }
-   *
- * - * @param {string} name The name of the animation. - * @param {function} factory The factory function that will be executed to return the animation - * object. - */ - this.register = function(name, factory) { - var key = name + '-animation'; - if (name && name.charAt(0) != '.') throw $animateMinErr('notcsel', - "Expecting class selector starting with '.' got '{0}'.", name); - this.$$selectors[name.substr(1)] = key; - $provide.factory(key, factory); - }; - - /** - * @ngdoc function - * @name ng.$animateProvider#classNameFilter - * @methodOf ng.$animateProvider - * - * @description - * Sets and/or returns the CSS class regular expression that is checked when performing - * an animation. Upon bootstrap the classNameFilter value is not set at all and will - * therefore enable $animate to attempt to perform an animation on any element. - * When setting the classNameFilter value, animations will only be performed on elements - * that successfully match the filter expression. This in turn can boost performance - * for low-powered devices as well as applications containing a lot of structural operations. - * @param {RegExp=} expression The className expression which will be checked against all animations - * @return {RegExp} The current CSS className expression value. If null then there is no expression value - */ - this.classNameFilter = function(expression) { - if(arguments.length === 1) { - this.$$classNameFilter = (expression instanceof RegExp) ? expression : null; - } - return this.$$classNameFilter; - }; - - this.$get = ['$timeout', function($timeout) { - - /** - * - * @ngdoc object - * @name ng.$animate - * @description The $animate service provides rudimentary DOM manipulation functions to - * insert, remove and move elements within the DOM, as well as adding and removing classes. - * This service is the core service used by the ngAnimate $animator service which provides - * high-level animation hooks for CSS and JavaScript. - * - * $animate is available in the AngularJS core, however, the ngAnimate module must be included - * to enable full out animation support. Otherwise, $animate will only perform simple DOM - * manipulation operations. - * - * To learn more about enabling animation support, click here to visit the {@link ngAnimate - * ngAnimate module page} as well as the {@link ngAnimate.$animate ngAnimate $animate service - * page}. - */ - return { - - /** - * - * @ngdoc function - * @name ng.$animate#enter - * @methodOf ng.$animate - * @function - * @description Inserts the element into the DOM either after the `after` element or within - * the `parent` element. Once complete, the done() callback will be fired (if provided). - * @param {jQuery/jqLite element} element the element which will be inserted into the DOM - * @param {jQuery/jqLite element} parent the parent element which will append the element as - * a child (if the after element is not present) - * @param {jQuery/jqLite element} after the sibling element which will append the element - * after itself - * @param {function=} done callback function that will be called after the element has been - * inserted into the DOM - */ - enter : function(element, parent, after, done) { - if (after) { - after.after(element); - } else { - if (!parent || !parent[0]) { - parent = after.parent(); - } - parent.append(element); - } - done && $timeout(done, 0, false); - }, - - /** - * - * @ngdoc function - * @name ng.$animate#leave - * @methodOf ng.$animate - * @function - * @description Removes the element from the DOM. Once complete, the done() callback will be - * fired (if provided). - * @param {jQuery/jqLite element} element the element which will be removed from the DOM - * @param {function=} done callback function that will be called after the element has been - * removed from the DOM - */ - leave : function(element, done) { - element.remove(); - done && $timeout(done, 0, false); - }, - - /** - * - * @ngdoc function - * @name ng.$animate#move - * @methodOf ng.$animate - * @function - * @description Moves the position of the provided element within the DOM to be placed - * either after the `after` element or inside of the `parent` element. Once complete, the - * done() callback will be fired (if provided). - * - * @param {jQuery/jqLite element} element the element which will be moved around within the - * DOM - * @param {jQuery/jqLite element} parent the parent element where the element will be - * inserted into (if the after element is not present) - * @param {jQuery/jqLite element} after the sibling element where the element will be - * positioned next to - * @param {function=} done the callback function (if provided) that will be fired after the - * element has been moved to its new position - */ - move : function(element, parent, after, done) { - // Do not remove element before insert. Removing will cause data associated with the - // element to be dropped. Insert will implicitly do the remove. - this.enter(element, parent, after, done); - }, - - /** - * - * @ngdoc function - * @name ng.$animate#addClass - * @methodOf ng.$animate - * @function - * @description Adds the provided className CSS class value to the provided element. Once - * complete, the done() callback will be fired (if provided). - * @param {jQuery/jqLite element} element the element which will have the className value - * added to it - * @param {string} className the CSS class which will be added to the element - * @param {function=} done the callback function (if provided) that will be fired after the - * className value has been added to the element - */ - addClass : function(element, className, done) { - className = isString(className) ? - className : - isArray(className) ? className.join(' ') : ''; - forEach(element, function (element) { - jqLiteAddClass(element, className); - }); - done && $timeout(done, 0, false); - }, - - /** - * - * @ngdoc function - * @name ng.$animate#removeClass - * @methodOf ng.$animate - * @function - * @description Removes the provided className CSS class value from the provided element. - * Once complete, the done() callback will be fired (if provided). - * @param {jQuery/jqLite element} element the element which will have the className value - * removed from it - * @param {string} className the CSS class which will be removed from the element - * @param {function=} done the callback function (if provided) that will be fired after the - * className value has been removed from the element - */ - removeClass : function(element, className, done) { - className = isString(className) ? - className : - isArray(className) ? className.join(' ') : ''; - forEach(element, function (element) { - jqLiteRemoveClass(element, className); - }); - done && $timeout(done, 0, false); - }, - - enabled : noop - }; - }]; -}]; - -/** - * ! This is a private undocumented service ! - * - * @name ng.$browser - * @requires $log - * @description - * This object has two goals: - * - * - hide all the global state in the browser caused by the window object - * - abstract away all the browser specific features and inconsistencies - * - * For tests we provide {@link ngMock.$browser mock implementation} of the `$browser` - * service, which can be used for convenient testing of the application without the interaction with - * the real browser apis. - */ -/** - * @param {object} window The global window object. - * @param {object} document jQuery wrapped document. - * @param {function()} XHR XMLHttpRequest constructor. - * @param {object} $log console.log or an object with the same interface. - * @param {object} $sniffer $sniffer service - */ -function Browser(window, document, $log, $sniffer) { - var self = this, - rawDocument = document[0], - location = window.location, - history = window.history, - setTimeout = window.setTimeout, - clearTimeout = window.clearTimeout, - pendingDeferIds = {}; - - self.isMock = false; - - var outstandingRequestCount = 0; - var outstandingRequestCallbacks = []; - - // TODO(vojta): remove this temporary api - self.$$completeOutstandingRequest = completeOutstandingRequest; - self.$$incOutstandingRequestCount = function() { outstandingRequestCount++; }; - - /** - * Executes the `fn` function(supports currying) and decrements the `outstandingRequestCallbacks` - * counter. If the counter reaches 0, all the `outstandingRequestCallbacks` are executed. - */ - function completeOutstandingRequest(fn) { - try { - fn.apply(null, sliceArgs(arguments, 1)); - } finally { - outstandingRequestCount--; - if (outstandingRequestCount === 0) { - while(outstandingRequestCallbacks.length) { - try { - outstandingRequestCallbacks.pop()(); - } catch (e) { - $log.error(e); - } - } - } - } - } - - /** - * @private - * Note: this method is used only by scenario runner - * TODO(vojta): prefix this method with $$ ? - * @param {function()} callback Function that will be called when no outstanding request - */ - self.notifyWhenNoOutstandingRequests = function(callback) { - // force browser to execute all pollFns - this is needed so that cookies and other pollers fire - // at some deterministic time in respect to the test runner's actions. Leaving things up to the - // regular poller would result in flaky tests. - forEach(pollFns, function(pollFn){ pollFn(); }); - - if (outstandingRequestCount === 0) { - callback(); - } else { - outstandingRequestCallbacks.push(callback); - } - }; - - ////////////////////////////////////////////////////////////// - // Poll Watcher API - ////////////////////////////////////////////////////////////// - var pollFns = [], - pollTimeout; - - /** - * @name ng.$browser#addPollFn - * @methodOf ng.$browser - * - * @param {function()} fn Poll function to add - * - * @description - * Adds a function to the list of functions that poller periodically executes, - * and starts polling if not started yet. - * - * @returns {function()} the added function - */ - self.addPollFn = function(fn) { - if (isUndefined(pollTimeout)) startPoller(100, setTimeout); - pollFns.push(fn); - return fn; - }; - - /** - * @param {number} interval How often should browser call poll functions (ms) - * @param {function()} setTimeout Reference to a real or fake `setTimeout` function. - * - * @description - * Configures the poller to run in the specified intervals, using the specified - * setTimeout fn and kicks it off. - */ - function startPoller(interval, setTimeout) { - (function check() { - forEach(pollFns, function(pollFn){ pollFn(); }); - pollTimeout = setTimeout(check, interval); - })(); - } - - ////////////////////////////////////////////////////////////// - // URL API - ////////////////////////////////////////////////////////////// - - var lastBrowserUrl = location.href, - baseElement = document.find('base'), - newLocation = null; - - /** - * @name ng.$browser#url - * @methodOf ng.$browser - * - * @description - * GETTER: - * Without any argument, this method just returns current value of location.href. - * - * SETTER: - * With at least one argument, this method sets url to new value. - * If html5 history api supported, pushState/replaceState is used, otherwise - * location.href/location.replace is used. - * Returns its own instance to allow chaining - * - * NOTE: this api is intended for use only by the $location service. Please use the - * {@link ng.$location $location service} to change url. - * - * @param {string} url New url (when used as setter) - * @param {boolean=} replace Should new url replace current history record ? - */ - self.url = function(url, replace) { - // Android Browser BFCache causes location reference to become stale. - if (location !== window.location) location = window.location; - - // setter - if (url) { - if (lastBrowserUrl == url) return; - lastBrowserUrl = url; - if ($sniffer.history) { - if (replace) history.replaceState(null, '', url); - else { - history.pushState(null, '', url); - // Crazy Opera Bug: http://my.opera.com/community/forums/topic.dml?id=1185462 - baseElement.attr('href', baseElement.attr('href')); - } - } else { - newLocation = url; - if (replace) { - location.replace(url); - } else { - location.href = url; - } - } - return self; - // getter - } else { - // - newLocation is a workaround for an IE7-9 issue with location.replace and location.href - // methods not updating location.href synchronously. - // - the replacement is a workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=407172 - return newLocation || location.href.replace(/%27/g,"'"); - } - }; - - var urlChangeListeners = [], - urlChangeInit = false; - - function fireUrlChange() { - newLocation = null; - if (lastBrowserUrl == self.url()) return; - - lastBrowserUrl = self.url(); - forEach(urlChangeListeners, function(listener) { - listener(self.url()); - }); - } - - /** - * @name ng.$browser#onUrlChange - * @methodOf ng.$browser - * @TODO(vojta): refactor to use node's syntax for events - * - * @description - * Register callback function that will be called, when url changes. - * - * It's only called when the url is changed by outside of angular: - * - user types different url into address bar - * - user clicks on history (forward/back) button - * - user clicks on a link - * - * It's not called when url is changed by $browser.url() method - * - * The listener gets called with new url as parameter. - * - * NOTE: this api is intended for use only by the $location service. Please use the - * {@link ng.$location $location service} to monitor url changes in angular apps. - * - * @param {function(string)} listener Listener function to be called when url changes. - * @return {function(string)} Returns the registered listener fn - handy if the fn is anonymous. - */ - self.onUrlChange = function(callback) { - if (!urlChangeInit) { - // We listen on both (hashchange/popstate) when available, as some browsers (e.g. Opera) - // don't fire popstate when user change the address bar and don't fire hashchange when url - // changed by push/replaceState - - // html5 history api - popstate event - if ($sniffer.history) jqLite(window).on('popstate', fireUrlChange); - // hashchange event - if ($sniffer.hashchange) jqLite(window).on('hashchange', fireUrlChange); - // polling - else self.addPollFn(fireUrlChange); - - urlChangeInit = true; - } - - urlChangeListeners.push(callback); - return callback; - }; - - ////////////////////////////////////////////////////////////// - // Misc API - ////////////////////////////////////////////////////////////// - - /** - * @name ng.$browser#baseHref - * @methodOf ng.$browser - * - * @description - * Returns current - * (always relative - without domain) - * - * @returns {string=} current - */ - self.baseHref = function() { - var href = baseElement.attr('href'); - return href ? href.replace(/^https?\:\/\/[^\/]*/, '') : ''; - }; - - ////////////////////////////////////////////////////////////// - // Cookies API - ////////////////////////////////////////////////////////////// - var lastCookies = {}; - var lastCookieString = ''; - var cookiePath = self.baseHref(); - - /** - * @name ng.$browser#cookies - * @methodOf ng.$browser - * - * @param {string=} name Cookie name - * @param {string=} value Cookie value - * - * @description - * The cookies method provides a 'private' low level access to browser cookies. - * It is not meant to be used directly, use the $cookie service instead. - * - * The return values vary depending on the arguments that the method was called with as follows: - * - * - cookies() -> hash of all cookies, this is NOT a copy of the internal state, so do not modify - * it - * - cookies(name, value) -> set name to value, if value is undefined delete the cookie - * - cookies(name) -> the same as (name, undefined) == DELETES (no one calls it right now that - * way) - * - * @returns {Object} Hash of all cookies (if called without any parameter) - */ - self.cookies = function(name, value) { - /* global escape: false, unescape: false */ - var cookieLength, cookieArray, cookie, i, index; - - if (name) { - if (value === undefined) { - rawDocument.cookie = escape(name) + "=;path=" + cookiePath + - ";expires=Thu, 01 Jan 1970 00:00:00 GMT"; - } else { - if (isString(value)) { - cookieLength = (rawDocument.cookie = escape(name) + '=' + escape(value) + - ';path=' + cookiePath).length + 1; - - // per http://www.ietf.org/rfc/rfc2109.txt browser must allow at minimum: - // - 300 cookies - // - 20 cookies per unique domain - // - 4096 bytes per cookie - if (cookieLength > 4096) { - $log.warn("Cookie '"+ name + - "' possibly not set or overflowed because it was too large ("+ - cookieLength + " > 4096 bytes)!"); - } - } - } - } else { - if (rawDocument.cookie !== lastCookieString) { - lastCookieString = rawDocument.cookie; - cookieArray = lastCookieString.split("; "); - lastCookies = {}; - - for (i = 0; i < cookieArray.length; i++) { - cookie = cookieArray[i]; - index = cookie.indexOf('='); - if (index > 0) { //ignore nameless cookies - name = unescape(cookie.substring(0, index)); - // the first value that is seen for a cookie is the most - // specific one. values for the same cookie name that - // follow are for less specific paths. - if (lastCookies[name] === undefined) { - lastCookies[name] = unescape(cookie.substring(index + 1)); - } - } - } - } - return lastCookies; - } - }; - - - /** - * @name ng.$browser#defer - * @methodOf ng.$browser - * @param {function()} fn A function, who's execution should be deferred. - * @param {number=} [delay=0] of milliseconds to defer the function execution. - * @returns {*} DeferId that can be used to cancel the task via `$browser.defer.cancel()`. - * - * @description - * Executes a fn asynchronously via `setTimeout(fn, delay)`. - * - * Unlike when calling `setTimeout` directly, in test this function is mocked and instead of using - * `setTimeout` in tests, the fns are queued in an array, which can be programmatically flushed - * via `$browser.defer.flush()`. - * - */ - self.defer = function(fn, delay) { - var timeoutId; - outstandingRequestCount++; - timeoutId = setTimeout(function() { - delete pendingDeferIds[timeoutId]; - completeOutstandingRequest(fn); - }, delay || 0); - pendingDeferIds[timeoutId] = true; - return timeoutId; - }; - - - /** - * @name ng.$browser#defer.cancel - * @methodOf ng.$browser.defer - * - * @description - * Cancels a deferred task identified with `deferId`. - * - * @param {*} deferId Token returned by the `$browser.defer` function. - * @returns {boolean} Returns `true` if the task hasn't executed yet and was successfully - * canceled. - */ - self.defer.cancel = function(deferId) { - if (pendingDeferIds[deferId]) { - delete pendingDeferIds[deferId]; - clearTimeout(deferId); - completeOutstandingRequest(noop); - return true; - } - return false; - }; - -} - -function $BrowserProvider(){ - this.$get = ['$window', '$log', '$sniffer', '$document', - function( $window, $log, $sniffer, $document){ - return new Browser($window, $document, $log, $sniffer); - }]; -} - -/** - * @ngdoc object - * @name ng.$cacheFactory - * - * @description - * Factory that constructs cache objects and gives access to them. - * - *
- * 
- *  var cache = $cacheFactory('cacheId');
- *  expect($cacheFactory.get('cacheId')).toBe(cache);
- *  expect($cacheFactory.get('noSuchCacheId')).not.toBeDefined();
- *
- *  cache.put("key", "value");
- *  cache.put("another key", "another value");
- *
- *  // We've specified no options on creation
- *  expect(cache.info()).toEqual({id: 'cacheId', size: 2}); 
- * 
- * 
- * - * - * @param {string} cacheId Name or id of the newly created cache. - * @param {object=} options Options object that specifies the cache behavior. Properties: - * - * - `{number=}` `capacity` — turns the cache into LRU cache. - * - * @returns {object} Newly created cache object with the following set of methods: - * - * - `{object}` `info()` — Returns id, size, and options of cache. - * - `{{*}}` `put({string} key, {*} value)` — Puts a new key-value pair into the cache and returns - * it. - * - `{{*}}` `get({string} key)` — Returns cached value for `key` or undefined for cache miss. - * - `{void}` `remove({string} key)` — Removes a key-value pair from the cache. - * - `{void}` `removeAll()` — Removes all cached values. - * - `{void}` `destroy()` — Removes references to this cache from $cacheFactory. - * - */ -function $CacheFactoryProvider() { - - this.$get = function() { - var caches = {}; - - function cacheFactory(cacheId, options) { - if (cacheId in caches) { - throw minErr('$cacheFactory')('iid', "CacheId '{0}' is already taken!", cacheId); - } - - var size = 0, - stats = extend({}, options, {id: cacheId}), - data = {}, - capacity = (options && options.capacity) || Number.MAX_VALUE, - lruHash = {}, - freshEnd = null, - staleEnd = null; - - return caches[cacheId] = { - - put: function(key, value) { - var lruEntry = lruHash[key] || (lruHash[key] = {key: key}); - - refresh(lruEntry); - - if (isUndefined(value)) return; - if (!(key in data)) size++; - data[key] = value; - - if (size > capacity) { - this.remove(staleEnd.key); - } - - return value; - }, - - - get: function(key) { - var lruEntry = lruHash[key]; - - if (!lruEntry) return; - - refresh(lruEntry); - - return data[key]; - }, - - - remove: function(key) { - var lruEntry = lruHash[key]; - - if (!lruEntry) return; - - if (lruEntry == freshEnd) freshEnd = lruEntry.p; - if (lruEntry == staleEnd) staleEnd = lruEntry.n; - link(lruEntry.n,lruEntry.p); - - delete lruHash[key]; - delete data[key]; - size--; - }, - - - removeAll: function() { - data = {}; - size = 0; - lruHash = {}; - freshEnd = staleEnd = null; - }, - - - destroy: function() { - data = null; - stats = null; - lruHash = null; - delete caches[cacheId]; - }, - - - info: function() { - return extend({}, stats, {size: size}); - } - }; - - - /** - * makes the `entry` the freshEnd of the LRU linked list - */ - function refresh(entry) { - if (entry != freshEnd) { - if (!staleEnd) { - staleEnd = entry; - } else if (staleEnd == entry) { - staleEnd = entry.n; - } - - link(entry.n, entry.p); - link(entry, freshEnd); - freshEnd = entry; - freshEnd.n = null; - } - } - - - /** - * bidirectionally links two entries of the LRU linked list - */ - function link(nextEntry, prevEntry) { - if (nextEntry != prevEntry) { - if (nextEntry) nextEntry.p = prevEntry; //p stands for previous, 'prev' didn't minify - if (prevEntry) prevEntry.n = nextEntry; //n stands for next, 'next' didn't minify - } - } - } - - - /** - * @ngdoc method - * @name ng.$cacheFactory#info - * @methodOf ng.$cacheFactory - * - * @description - * Get information about all the of the caches that have been created - * - * @returns {Object} - key-value map of `cacheId` to the result of calling `cache#info` - */ - cacheFactory.info = function() { - var info = {}; - forEach(caches, function(cache, cacheId) { - info[cacheId] = cache.info(); - }); - return info; - }; - - - /** - * @ngdoc method - * @name ng.$cacheFactory#get - * @methodOf ng.$cacheFactory - * - * @description - * Get access to a cache object by the `cacheId` used when it was created. - * - * @param {string} cacheId Name or id of a cache to access. - * @returns {object} Cache object identified by the cacheId or undefined if no such cache. - */ - cacheFactory.get = function(cacheId) { - return caches[cacheId]; - }; - - - return cacheFactory; - }; -} - -/** - * @ngdoc object - * @name ng.$templateCache - * - * @description - * The first time a template is used, it is loaded in the template cache for quick retrieval. You - * can load templates directly into the cache in a `script` tag, or by consuming the - * `$templateCache` service directly. - * - * Adding via the `script` tag: - *
- * 
- * 
- * 
- * 
- *   ...
- * 
- * 
- * - * **Note:** the `script` tag containing the template does not need to be included in the `head` of - * the document, but it must be below the `ng-app` definition. - * - * Adding via the $templateCache service: - * - *
- * var myApp = angular.module('myApp', []);
- * myApp.run(function($templateCache) {
- *   $templateCache.put('templateId.html', 'This is the content of the template');
- * });
- * 
- * - * To retrieve the template later, simply use it in your HTML: - *
- * 
- *
- * - * or get it via Javascript: - *
- * $templateCache.get('templateId.html')
- * 
- * - * See {@link ng.$cacheFactory $cacheFactory}. - * - */ -function $TemplateCacheProvider() { - this.$get = ['$cacheFactory', function($cacheFactory) { - return $cacheFactory('templates'); - }]; -} - -/* ! VARIABLE/FUNCTION NAMING CONVENTIONS THAT APPLY TO THIS FILE! - * - * DOM-related variables: - * - * - "node" - DOM Node - * - "element" - DOM Element or Node - * - "$node" or "$element" - jqLite-wrapped node or element - * - * - * Compiler related stuff: - * - * - "linkFn" - linking fn of a single directive - * - "nodeLinkFn" - function that aggregates all linking fns for a particular node - * - "childLinkFn" - function that aggregates all linking fns for child nodes of a particular node - * - "compositeLinkFn" - function that aggregates all linking fns for a compilation root (nodeList) - */ - - -/** - * @ngdoc function - * @name ng.$compile - * @function - * - * @description - * Compiles a piece of HTML string or DOM into a template and produces a template function, which - * can then be used to link {@link ng.$rootScope.Scope `scope`} and the template together. - * - * The compilation is a process of walking the DOM tree and matching DOM elements to - * {@link ng.$compileProvider#methods_directive directives}. - * - *
- * **Note:** This document is an in-depth reference of all directive options. - * For a gentle introduction to directives with examples of common use cases, - * see the {@link guide/directive directive guide}. - *
- * - * ## Comprehensive Directive API - * - * There are many different options for a directive. - * - * The difference resides in the return value of the factory function. - * You can either return a "Directive Definition Object" (see below) that defines the directive properties, - * or just the `postLink` function (all other properties will have the default values). - * - *
- * **Best Practice:** It's recommended to use the "directive definition object" form. - *
- * - * Here's an example directive declared with a Directive Definition Object: - * - *
- *   var myModule = angular.module(...);
- *
- *   myModule.directive('directiveName', function factory(injectables) {
- *     var directiveDefinitionObject = {
- *       priority: 0,
- *       template: '
', // or // function(tElement, tAttrs) { ... }, - * // or - * // templateUrl: 'directive.html', // or // function(tElement, tAttrs) { ... }, - * replace: false, - * transclude: false, - * restrict: 'A', - * scope: false, - * controller: function($scope, $element, $attrs, $transclude, otherInjectables) { ... }, - * require: 'siblingDirectiveName', // or // ['^parentDirectiveName', '?optionalDirectiveName', '?^optionalParent'], - * compile: function compile(tElement, tAttrs, transclude) { - * return { - * pre: function preLink(scope, iElement, iAttrs, controller) { ... }, - * post: function postLink(scope, iElement, iAttrs, controller) { ... } - * } - * // or - * // return function postLink( ... ) { ... } - * }, - * // or - * // link: { - * // pre: function preLink(scope, iElement, iAttrs, controller) { ... }, - * // post: function postLink(scope, iElement, iAttrs, controller) { ... } - * // } - * // or - * // link: function postLink( ... ) { ... } - * }; - * return directiveDefinitionObject; - * }); - *
- * - *
- * **Note:** Any unspecified options will use the default value. You can see the default values below. - *
- * - * Therefore the above can be simplified as: - * - *
- *   var myModule = angular.module(...);
- *
- *   myModule.directive('directiveName', function factory(injectables) {
- *     var directiveDefinitionObject = {
- *       link: function postLink(scope, iElement, iAttrs) { ... }
- *     };
- *     return directiveDefinitionObject;
- *     // or
- *     // return function postLink(scope, iElement, iAttrs) { ... }
- *   });
- * 
- * - * - * - * ### Directive Definition Object - * - * The directive definition object provides instructions to the {@link api/ng.$compile - * compiler}. The attributes are: - * - * #### `priority` - * When there are multiple directives defined on a single DOM element, sometimes it - * is necessary to specify the order in which the directives are applied. The `priority` is used - * to sort the directives before their `compile` functions get called. Priority is defined as a - * number. Directives with greater numerical `priority` are compiled first. Pre-link functions - * are also run in priority order, but post-link functions are run in reverse order. The order - * of directives with the same priority is undefined. The default priority is `0`. - * - * #### `terminal` - * If set to true then the current `priority` will be the last set of directives - * which will execute (any directives at the current priority will still execute - * as the order of execution on same `priority` is undefined). - * - * #### `scope` - * **If set to `true`,** then a new scope will be created for this directive. If multiple directives on the - * same element request a new scope, only one new scope is created. The new scope rule does not - * apply for the root of the template since the root of the template always gets a new scope. - * - * **If set to `{}` (object hash),** then a new "isolate" scope is created. The 'isolate' scope differs from - * normal scope in that it does not prototypically inherit from the parent scope. This is useful - * when creating reusable components, which should not accidentally read or modify data in the - * parent scope. - * - * The 'isolate' scope takes an object hash which defines a set of local scope properties - * derived from the parent scope. These local properties are useful for aliasing values for - * templates. Locals definition is a hash of local scope property to its source: - * - * * `@` or `@attr` - bind a local scope property to the value of DOM attribute. The result is - * always a string since DOM attributes are strings. If no `attr` name is specified then the - * attribute name is assumed to be the same as the local name. - * Given `` and widget definition - * of `scope: { localName:'@myAttr' }`, then widget scope property `localName` will reflect - * the interpolated value of `hello {{name}}`. As the `name` attribute changes so will the - * `localName` property on the widget scope. The `name` is read from the parent scope (not - * component scope). - * - * * `=` or `=attr` - set up bi-directional binding between a local scope property and the - * parent scope property of name defined via the value of the `attr` attribute. If no `attr` - * name is specified then the attribute name is assumed to be the same as the local name. - * Given `` and widget definition of - * `scope: { localModel:'=myAttr' }`, then widget scope property `localModel` will reflect the - * value of `parentModel` on the parent scope. Any changes to `parentModel` will be reflected - * in `localModel` and any changes in `localModel` will reflect in `parentModel`. If the parent - * scope property doesn't exist, it will throw a NON_ASSIGNABLE_MODEL_EXPRESSION exception. You - * can avoid this behavior using `=?` or `=?attr` in order to flag the property as optional. - * - * * `&` or `&attr` - provides a way to execute an expression in the context of the parent scope. - * If no `attr` name is specified then the attribute name is assumed to be the same as the - * local name. Given `` and widget definition of - * `scope: { localFn:'&myAttr' }`, then isolate scope property `localFn` will point to - * a function wrapper for the `count = count + value` expression. Often it's desirable to - * pass data from the isolated scope via an expression and to the parent scope, this can be - * done by passing a map of local variable names and values into the expression wrapper fn. - * For example, if the expression is `increment(amount)` then we can specify the amount value - * by calling the `localFn` as `localFn({amount: 22})`. - * - * - * - * #### `controller` - * Controller constructor function. The controller is instantiated before the - * pre-linking phase and it is shared with other directives (see - * `require` attribute). This allows the directives to communicate with each other and augment - * each other's behavior. The controller is injectable (and supports bracket notation) with the following locals: - * - * * `$scope` - Current scope associated with the element - * * `$element` - Current element - * * `$attrs` - Current attributes object for the element - * * `$transclude` - A transclude linking function pre-bound to the correct transclusion scope. - * The scope can be overridden by an optional first argument. - * `function([scope], cloneLinkingFn)`. - * - * - * #### `require` - * Require another directive and inject its controller as the fourth argument to the linking function. The - * `require` takes a string name (or array of strings) of the directive(s) to pass in. If an array is used, the - * injected argument will be an array in corresponding order. If no such directive can be - * found, or if the directive does not have a controller, then an error is raised. The name can be prefixed with: - * - * * (no prefix) - Locate the required controller on the current element. Throw an error if not found. - * * `?` - Attempt to locate the required controller or pass `null` to the `link` fn if not found. - * * `^` - Locate the required controller by searching the element's parents. Throw an error if not found. - * * `?^` - Attempt to locate the required controller by searching the element's parents or pass `null` to the - * `link` fn if not found. - * - * - * #### `controllerAs` - * Controller alias at the directive scope. An alias for the controller so it - * can be referenced at the directive template. The directive needs to define a scope for this - * configuration to be used. Useful in the case when directive is used as component. - * - * - * #### `restrict` - * String of subset of `EACM` which restricts the directive to a specific directive - * declaration style. If omitted, the default (attributes only) is used. - * - * * `E` - Element name: `` - * * `A` - Attribute (default): `
` - * * `C` - Class: `
` - * * `M` - Comment: `` - * - * - * #### `template` - * replace the current element with the contents of the HTML. The replacement process - * migrates all of the attributes / classes from the old element to the new one. See the - * {@link guide/directive#creating-custom-directives_creating-directives_template-expanding-directive - * Directives Guide} for an example. - * - * You can specify `template` as a string representing the template or as a function which takes - * two arguments `tElement` and `tAttrs` (described in the `compile` function api below) and - * returns a string value representing the template. - * - * - * #### `templateUrl` - * Same as `template` but the template is loaded from the specified URL. Because - * the template loading is asynchronous the compilation/linking is suspended until the template - * is loaded. - * - * You can specify `templateUrl` as a string representing the URL or as a function which takes two - * arguments `tElement` and `tAttrs` (described in the `compile` function api below) and returns - * a string value representing the url. In either case, the template URL is passed through {@link - * api/ng.$sce#methods_getTrustedResourceUrl $sce.getTrustedResourceUrl}. - * - * - * #### `replace` - * specify where the template should be inserted. Defaults to `false`. - * - * * `true` - the template will replace the current element. - * * `false` - the template will replace the contents of the current element. - * - * - * #### `transclude` - * compile the content of the element and make it available to the directive. - * Typically used with {@link api/ng.directive:ngTransclude - * ngTransclude}. The advantage of transclusion is that the linking function receives a - * transclusion function which is pre-bound to the correct scope. In a typical setup the widget - * creates an `isolate` scope, but the transclusion is not a child, but a sibling of the `isolate` - * scope. This makes it possible for the widget to have private state, and the transclusion to - * be bound to the parent (pre-`isolate`) scope. - * - * * `true` - transclude the content of the directive. - * * `'element'` - transclude the whole element including any directives defined at lower priority. - * - * - * #### `compile` - * - *
- *   function compile(tElement, tAttrs, transclude) { ... }
- * 
- * - * The compile function deals with transforming the template DOM. Since most directives do not do - * template transformation, it is not used often. Examples that require compile functions are - * directives that transform template DOM, such as {@link - * api/ng.directive:ngRepeat ngRepeat}, or load the contents - * asynchronously, such as {@link api/ngRoute.directive:ngView ngView}. The - * compile function takes the following arguments. - * - * * `tElement` - template element - The element where the directive has been declared. It is - * safe to do template transformation on the element and child elements only. - * - * * `tAttrs` - template attributes - Normalized list of attributes declared on this element shared - * between all directive compile functions. - * - * * `transclude` - [*DEPRECATED*!] A transclude linking function: `function(scope, cloneLinkingFn)` - * - *
- * **Note:** The template instance and the link instance may be different objects if the template has - * been cloned. For this reason it is **not** safe to do anything other than DOM transformations that - * apply to all cloned DOM nodes within the compile function. Specifically, DOM listener registration - * should be done in a linking function rather than in a compile function. - *
- * - *
- * **Note:** The `transclude` function that is passed to the compile function is deprecated, as it - * e.g. does not know about the right outer scope. Please use the transclude function that is passed - * to the link function instead. - *
- - * A compile function can have a return value which can be either a function or an object. - * - * * returning a (post-link) function - is equivalent to registering the linking function via the - * `link` property of the config object when the compile function is empty. - * - * * returning an object with function(s) registered via `pre` and `post` properties - allows you to - * control when a linking function should be called during the linking phase. See info about - * pre-linking and post-linking functions below. - * - * - * #### `link` - * This property is used only if the `compile` property is not defined. - * - *
- *   function link(scope, iElement, iAttrs, controller, transcludeFn) { ... }
- * 
- * - * The link function is responsible for registering DOM listeners as well as updating the DOM. It is - * executed after the template has been cloned. This is where most of the directive logic will be - * put. - * - * * `scope` - {@link api/ng.$rootScope.Scope Scope} - The scope to be used by the - * directive for registering {@link api/ng.$rootScope.Scope#methods_$watch watches}. - * - * * `iElement` - instance element - The element where the directive is to be used. It is safe to - * manipulate the children of the element only in `postLink` function since the children have - * already been linked. - * - * * `iAttrs` - instance attributes - Normalized list of attributes declared on this element shared - * between all directive linking functions. - * - * * `controller` - a controller instance - A controller instance if at least one directive on the - * element defines a controller. The controller is shared among all the directives, which allows - * the directives to use the controllers as a communication channel. - * - * * `transcludeFn` - A transclude linking function pre-bound to the correct transclusion scope. - * The scope can be overridden by an optional first argument. This is the same as the `$transclude` - * parameter of directive controllers. - * `function([scope], cloneLinkingFn)`. - * - * - * #### Pre-linking function - * - * Executed before the child elements are linked. Not safe to do DOM transformation since the - * compiler linking function will fail to locate the correct elements for linking. - * - * #### Post-linking function - * - * Executed after the child elements are linked. It is safe to do DOM transformation in the post-linking function. - * - * - * ### Attributes - * - * The {@link api/ng.$compile.directive.Attributes Attributes} object - passed as a parameter in the - * `link()` or `compile()` functions. It has a variety of uses. - * - * accessing *Normalized attribute names:* - * Directives like 'ngBind' can be expressed in many ways: 'ng:bind', `data-ng-bind`, or 'x-ng-bind'. - * the attributes object allows for normalized access to - * the attributes. - * - * * *Directive inter-communication:* All directives share the same instance of the attributes - * object which allows the directives to use the attributes object as inter directive - * communication. - * - * * *Supports interpolation:* Interpolation attributes are assigned to the attribute object - * allowing other directives to read the interpolated value. - * - * * *Observing interpolated attributes:* Use `$observe` to observe the value changes of attributes - * that contain interpolation (e.g. `src="{{bar}}"`). Not only is this very efficient but it's also - * the only way to easily get the actual value because during the linking phase the interpolation - * hasn't been evaluated yet and so the value is at this time set to `undefined`. - * - *
- * function linkingFn(scope, elm, attrs, ctrl) {
- *   // get the attribute value
- *   console.log(attrs.ngModel);
- *
- *   // change the attribute
- *   attrs.$set('ngModel', 'new value');
- *
- *   // observe changes to interpolated attribute
- *   attrs.$observe('ngModel', function(value) {
- *     console.log('ngModel has changed value to ' + value);
- *   });
- * }
- * 
- * - * Below is an example using `$compileProvider`. - * - *
- * **Note**: Typically directives are registered with `module.directive`. The example below is - * to illustrate how `$compile` works. - *
- * - - - -
-
-
-
-
-
- - it('should auto compile', function() { - expect(element('div[compile]').text()).toBe('Hello Angular'); - input('html').enter('{{name}}!'); - expect(element('div[compile]').text()).toBe('Angular!'); - }); - -
- - * - * - * @param {string|DOMElement} element Element or HTML string to compile into a template function. - * @param {function(angular.Scope[, cloneAttachFn]} transclude function available to directives. - * @param {number} maxPriority only apply directives lower then given priority (Only effects the - * root element(s), not their children) - * @returns {function(scope[, cloneAttachFn])} a link function which is used to bind template - * (a DOM element/tree) to a scope. Where: - * - * * `scope` - A {@link ng.$rootScope.Scope Scope} to bind to. - * * `cloneAttachFn` - If `cloneAttachFn` is provided, then the link function will clone the - * `template` and call the `cloneAttachFn` function allowing the caller to attach the - * cloned elements to the DOM document at the appropriate place. The `cloneAttachFn` is - * called as:
`cloneAttachFn(clonedElement, scope)` where: - * - * * `clonedElement` - is a clone of the original `element` passed into the compiler. - * * `scope` - is the current scope with which the linking function is working with. - * - * Calling the linking function returns the element of the template. It is either the original - * element passed in, or the clone of the element if the `cloneAttachFn` is provided. - * - * After linking the view is not updated until after a call to $digest which typically is done by - * Angular automatically. - * - * If you need access to the bound view, there are two ways to do it: - * - * - If you are not asking the linking function to clone the template, create the DOM element(s) - * before you send them to the compiler and keep this reference around. - *
- *     var element = $compile('

{{total}}

')(scope); - *
- * - * - if on the other hand, you need the element to be cloned, the view reference from the original - * example would not point to the clone, but rather to the original template that was cloned. In - * this case, you can access the clone via the cloneAttachFn: - *
- *     var templateElement = angular.element('

{{total}}

'), - * scope = ....; - * - * var clonedElement = $compile(templateElement)(scope, function(clonedElement, scope) { - * //attach the clone to DOM document at the right place - * }); - * - * //now we have reference to the cloned DOM via `clonedElement` - *
- * - * - * For information on how the compiler works, see the - * {@link guide/compiler Angular HTML Compiler} section of the Developer Guide. - */ - -var $compileMinErr = minErr('$compile'); - -/** - * @ngdoc service - * @name ng.$compileProvider - * @function - * - * @description - */ -$CompileProvider.$inject = ['$provide', '$$sanitizeUriProvider']; -function $CompileProvider($provide, $$sanitizeUriProvider) { - var hasDirectives = {}, - Suffix = 'Directive', - COMMENT_DIRECTIVE_REGEXP = /^\s*directive\:\s*([\d\w\-_]+)\s+(.*)$/, - CLASS_DIRECTIVE_REGEXP = /(([\d\w\-_]+)(?:\:([^;]+))?;?)/; - - // Ref: http://developers.whatwg.org/webappapis.html#event-handler-idl-attributes - // The assumption is that future DOM event attribute names will begin with - // 'on' and be composed of only English letters. - var EVENT_HANDLER_ATTR_REGEXP = /^(on[a-z]+|formaction)$/; - - /** - * @ngdoc function - * @name ng.$compileProvider#directive - * @methodOf ng.$compileProvider - * @function - * - * @description - * Register a new directive with the compiler. - * - * @param {string|Object} name Name of the directive in camel-case (i.e. ngBind which - * will match as ng-bind), or an object map of directives where the keys are the - * names and the values are the factories. - * @param {function|Array} directiveFactory An injectable directive factory function. See - * {@link guide/directive} for more info. - * @returns {ng.$compileProvider} Self for chaining. - */ - this.directive = function registerDirective(name, directiveFactory) { - assertNotHasOwnProperty(name, 'directive'); - if (isString(name)) { - assertArg(directiveFactory, 'directiveFactory'); - if (!hasDirectives.hasOwnProperty(name)) { - hasDirectives[name] = []; - $provide.factory(name + Suffix, ['$injector', '$exceptionHandler', - function($injector, $exceptionHandler) { - var directives = []; - forEach(hasDirectives[name], function(directiveFactory, index) { - try { - var directive = $injector.invoke(directiveFactory); - if (isFunction(directive)) { - directive = { compile: valueFn(directive) }; - } else if (!directive.compile && directive.link) { - directive.compile = valueFn(directive.link); - } - directive.priority = directive.priority || 0; - directive.index = index; - directive.name = directive.name || name; - directive.require = directive.require || (directive.controller && directive.name); - directive.restrict = directive.restrict || 'A'; - directives.push(directive); - } catch (e) { - $exceptionHandler(e); - } - }); - return directives; - }]); - } - hasDirectives[name].push(directiveFactory); - } else { - forEach(name, reverseParams(registerDirective)); - } - return this; - }; - - - /** - * @ngdoc function - * @name ng.$compileProvider#aHrefSanitizationWhitelist - * @methodOf ng.$compileProvider - * @function - * - * @description - * Retrieves or overrides the default regular expression that is used for whitelisting of safe - * urls during a[href] sanitization. - * - * The sanitization is a security measure aimed at prevent XSS attacks via html links. - * - * Any url about to be assigned to a[href] via data-binding is first normalized and turned into - * an absolute url. Afterwards, the url is matched against the `aHrefSanitizationWhitelist` - * regular expression. If a match is found, the original url is written into the dom. Otherwise, - * the absolute url is prefixed with `'unsafe:'` string and only then is it written into the DOM. - * - * @param {RegExp=} regexp New regexp to whitelist urls with. - * @returns {RegExp|ng.$compileProvider} Current RegExp if called without value or self for - * chaining otherwise. - */ - this.aHrefSanitizationWhitelist = function(regexp) { - if (isDefined(regexp)) { - $$sanitizeUriProvider.aHrefSanitizationWhitelist(regexp); - return this; - } else { - return $$sanitizeUriProvider.aHrefSanitizationWhitelist(); - } - }; - - - /** - * @ngdoc function - * @name ng.$compileProvider#imgSrcSanitizationWhitelist - * @methodOf ng.$compileProvider - * @function - * - * @description - * Retrieves or overrides the default regular expression that is used for whitelisting of safe - * urls during img[src] sanitization. - * - * The sanitization is a security measure aimed at prevent XSS attacks via html links. - * - * Any url about to be assigned to img[src] via data-binding is first normalized and turned into - * an absolute url. Afterwards, the url is matched against the `imgSrcSanitizationWhitelist` - * regular expression. If a match is found, the original url is written into the dom. Otherwise, - * the absolute url is prefixed with `'unsafe:'` string and only then is it written into the DOM. - * - * @param {RegExp=} regexp New regexp to whitelist urls with. - * @returns {RegExp|ng.$compileProvider} Current RegExp if called without value or self for - * chaining otherwise. - */ - this.imgSrcSanitizationWhitelist = function(regexp) { - if (isDefined(regexp)) { - $$sanitizeUriProvider.imgSrcSanitizationWhitelist(regexp); - return this; - } else { - return $$sanitizeUriProvider.imgSrcSanitizationWhitelist(); - } - }; - - this.$get = [ - '$injector', '$interpolate', '$exceptionHandler', '$http', '$templateCache', '$parse', - '$controller', '$rootScope', '$document', '$sce', '$animate', '$$sanitizeUri', - function($injector, $interpolate, $exceptionHandler, $http, $templateCache, $parse, - $controller, $rootScope, $document, $sce, $animate, $$sanitizeUri) { - - var Attributes = function(element, attr) { - this.$$element = element; - this.$attr = attr || {}; - }; - - Attributes.prototype = { - $normalize: directiveNormalize, - - - /** - * @ngdoc function - * @name ng.$compile.directive.Attributes#$addClass - * @methodOf ng.$compile.directive.Attributes - * @function - * - * @description - * Adds the CSS class value specified by the classVal parameter to the element. If animations - * are enabled then an animation will be triggered for the class addition. - * - * @param {string} classVal The className value that will be added to the element - */ - $addClass : function(classVal) { - if(classVal && classVal.length > 0) { - $animate.addClass(this.$$element, classVal); - } - }, - - /** - * @ngdoc function - * @name ng.$compile.directive.Attributes#$removeClass - * @methodOf ng.$compile.directive.Attributes - * @function - * - * @description - * Removes the CSS class value specified by the classVal parameter from the element. If - * animations are enabled then an animation will be triggered for the class removal. - * - * @param {string} classVal The className value that will be removed from the element - */ - $removeClass : function(classVal) { - if(classVal && classVal.length > 0) { - $animate.removeClass(this.$$element, classVal); - } - }, - - /** - * @ngdoc function - * @name ng.$compile.directive.Attributes#$updateClass - * @methodOf ng.$compile.directive.Attributes - * @function - * - * @description - * Adds and removes the appropriate CSS class values to the element based on the difference - * between the new and old CSS class values (specified as newClasses and oldClasses). - * - * @param {string} newClasses The current CSS className value - * @param {string} oldClasses The former CSS className value - */ - $updateClass : function(newClasses, oldClasses) { - this.$removeClass(tokenDifference(oldClasses, newClasses)); - this.$addClass(tokenDifference(newClasses, oldClasses)); - }, - - /** - * Set a normalized attribute on the element in a way such that all directives - * can share the attribute. This function properly handles boolean attributes. - * @param {string} key Normalized key. (ie ngAttribute) - * @param {string|boolean} value The value to set. If `null` attribute will be deleted. - * @param {boolean=} writeAttr If false, does not write the value to DOM element attribute. - * Defaults to true. - * @param {string=} attrName Optional none normalized name. Defaults to key. - */ - $set: function(key, value, writeAttr, attrName) { - // TODO: decide whether or not to throw an error if "class" - //is set through this function since it may cause $updateClass to - //become unstable. - - var booleanKey = getBooleanAttrName(this.$$element[0], key), - normalizedVal, - nodeName; - - if (booleanKey) { - this.$$element.prop(key, value); - attrName = booleanKey; - } - - this[key] = value; - - // translate normalized key to actual key - if (attrName) { - this.$attr[key] = attrName; - } else { - attrName = this.$attr[key]; - if (!attrName) { - this.$attr[key] = attrName = snake_case(key, '-'); - } - } - - nodeName = nodeName_(this.$$element); - - // sanitize a[href] and img[src] values - if ((nodeName === 'A' && key === 'href') || - (nodeName === 'IMG' && key === 'src')) { - this[key] = value = $$sanitizeUri(value, key === 'src'); - } - - if (writeAttr !== false) { - if (value === null || value === undefined) { - this.$$element.removeAttr(attrName); - } else { - this.$$element.attr(attrName, value); - } - } - - // fire observers - var $$observers = this.$$observers; - $$observers && forEach($$observers[key], function(fn) { - try { - fn(value); - } catch (e) { - $exceptionHandler(e); - } - }); - }, - - - /** - * @ngdoc function - * @name ng.$compile.directive.Attributes#$observe - * @methodOf ng.$compile.directive.Attributes - * @function - * - * @description - * Observes an interpolated attribute. - * - * The observer function will be invoked once during the next `$digest` following - * compilation. The observer is then invoked whenever the interpolated value - * changes. - * - * @param {string} key Normalized key. (ie ngAttribute) . - * @param {function(interpolatedValue)} fn Function that will be called whenever - the interpolated value of the attribute changes. - * See the {@link guide/directive#Attributes Directives} guide for more info. - * @returns {function()} the `fn` parameter. - */ - $observe: function(key, fn) { - var attrs = this, - $$observers = (attrs.$$observers || (attrs.$$observers = {})), - listeners = ($$observers[key] || ($$observers[key] = [])); - - listeners.push(fn); - $rootScope.$evalAsync(function() { - if (!listeners.$$inter) { - // no one registered attribute interpolation function, so lets call it manually - fn(attrs[key]); - } - }); - return fn; - } - }; - - var startSymbol = $interpolate.startSymbol(), - endSymbol = $interpolate.endSymbol(), - denormalizeTemplate = (startSymbol == '{{' || endSymbol == '}}') - ? identity - : function denormalizeTemplate(template) { - return template.replace(/\{\{/g, startSymbol).replace(/}}/g, endSymbol); - }, - NG_ATTR_BINDING = /^ngAttr[A-Z]/; - - - return compile; - - //================================ - - function compile($compileNodes, transcludeFn, maxPriority, ignoreDirective, - previousCompileContext) { - if (!($compileNodes instanceof jqLite)) { - // jquery always rewraps, whereas we need to preserve the original selector so that we can - // modify it. - $compileNodes = jqLite($compileNodes); - } - // We can not compile top level text elements since text nodes can be merged and we will - // not be able to attach scope data to them, so we will wrap them in - forEach($compileNodes, function(node, index){ - if (node.nodeType == 3 /* text node */ && node.nodeValue.match(/\S+/) /* non-empty */ ) { - $compileNodes[index] = node = jqLite(node).wrap('').parent()[0]; - } - }); - var compositeLinkFn = - compileNodes($compileNodes, transcludeFn, $compileNodes, - maxPriority, ignoreDirective, previousCompileContext); - safeAddClass($compileNodes, 'ng-scope'); - return function publicLinkFn(scope, cloneConnectFn, transcludeControllers){ - assertArg(scope, 'scope'); - // important!!: we must call our jqLite.clone() since the jQuery one is trying to be smart - // and sometimes changes the structure of the DOM. - var $linkNode = cloneConnectFn - ? JQLitePrototype.clone.call($compileNodes) // IMPORTANT!!! - : $compileNodes; - - forEach(transcludeControllers, function(instance, name) { - $linkNode.data('$' + name + 'Controller', instance); - }); - - // Attach scope only to non-text nodes. - for(var i = 0, ii = $linkNode.length; i - addDirective(directives, - directiveNormalize(nodeName_(node).toLowerCase()), 'E', maxPriority, ignoreDirective); - - // iterate over the attributes - for (var attr, name, nName, ngAttrName, value, nAttrs = node.attributes, - j = 0, jj = nAttrs && nAttrs.length; j < jj; j++) { - var attrStartName = false; - var attrEndName = false; - - attr = nAttrs[j]; - if (!msie || msie >= 8 || attr.specified) { - name = attr.name; - // support ngAttr attribute binding - ngAttrName = directiveNormalize(name); - if (NG_ATTR_BINDING.test(ngAttrName)) { - name = snake_case(ngAttrName.substr(6), '-'); - } - - var directiveNName = ngAttrName.replace(/(Start|End)$/, ''); - if (ngAttrName === directiveNName + 'Start') { - attrStartName = name; - attrEndName = name.substr(0, name.length - 5) + 'end'; - name = name.substr(0, name.length - 6); - } - - nName = directiveNormalize(name.toLowerCase()); - attrsMap[nName] = name; - attrs[nName] = value = trim(attr.value); - if (getBooleanAttrName(node, nName)) { - attrs[nName] = true; // presence means true - } - addAttrInterpolateDirective(node, directives, value, nName); - addDirective(directives, nName, 'A', maxPriority, ignoreDirective, attrStartName, - attrEndName); - } - } - - // use class as directive - className = node.className; - if (isString(className) && className !== '') { - while (match = CLASS_DIRECTIVE_REGEXP.exec(className)) { - nName = directiveNormalize(match[2]); - if (addDirective(directives, nName, 'C', maxPriority, ignoreDirective)) { - attrs[nName] = trim(match[3]); - } - className = className.substr(match.index + match[0].length); - } - } - break; - case 3: /* Text Node */ - addTextInterpolateDirective(directives, node.nodeValue); - break; - case 8: /* Comment */ - try { - match = COMMENT_DIRECTIVE_REGEXP.exec(node.nodeValue); - if (match) { - nName = directiveNormalize(match[1]); - if (addDirective(directives, nName, 'M', maxPriority, ignoreDirective)) { - attrs[nName] = trim(match[2]); - } - } - } catch (e) { - // turns out that under some circumstances IE9 throws errors when one attempts to read - // comment's node value. - // Just ignore it and continue. (Can't seem to reproduce in test case.) - } - break; - } - - directives.sort(byPriority); - return directives; - } - - /** - * Given a node with an directive-start it collects all of the siblings until it finds - * directive-end. - * @param node - * @param attrStart - * @param attrEnd - * @returns {*} - */ - function groupScan(node, attrStart, attrEnd) { - var nodes = []; - var depth = 0; - if (attrStart && node.hasAttribute && node.hasAttribute(attrStart)) { - var startNode = node; - do { - if (!node) { - throw $compileMinErr('uterdir', - "Unterminated attribute, found '{0}' but no matching '{1}' found.", - attrStart, attrEnd); - } - if (node.nodeType == 1 /** Element **/) { - if (node.hasAttribute(attrStart)) depth++; - if (node.hasAttribute(attrEnd)) depth--; - } - nodes.push(node); - node = node.nextSibling; - } while (depth > 0); - } else { - nodes.push(node); - } - - return jqLite(nodes); - } - - /** - * Wrapper for linking function which converts normal linking function into a grouped - * linking function. - * @param linkFn - * @param attrStart - * @param attrEnd - * @returns {Function} - */ - function groupElementsLinkFnWrapper(linkFn, attrStart, attrEnd) { - return function(scope, element, attrs, controllers, transcludeFn) { - element = groupScan(element[0], attrStart, attrEnd); - return linkFn(scope, element, attrs, controllers, transcludeFn); - }; - } - - /** - * Once the directives have been collected, their compile functions are executed. This method - * is responsible for inlining directive templates as well as terminating the application - * of the directives if the terminal directive has been reached. - * - * @param {Array} directives Array of collected directives to execute their compile function. - * this needs to be pre-sorted by priority order. - * @param {Node} compileNode The raw DOM node to apply the compile functions to - * @param {Object} templateAttrs The shared attribute function - * @param {function(angular.Scope[, cloneAttachFn]} transcludeFn A linking function, where the - * scope argument is auto-generated to the new - * child of the transcluded parent scope. - * @param {JQLite} jqCollection If we are working on the root of the compile tree then this - * argument has the root jqLite array so that we can replace nodes - * on it. - * @param {Object=} originalReplaceDirective An optional directive that will be ignored when - * compiling the transclusion. - * @param {Array.} preLinkFns - * @param {Array.} postLinkFns - * @param {Object} previousCompileContext Context used for previous compilation of the current - * node - * @returns linkFn - */ - function applyDirectivesToNode(directives, compileNode, templateAttrs, transcludeFn, - jqCollection, originalReplaceDirective, preLinkFns, postLinkFns, - previousCompileContext) { - previousCompileContext = previousCompileContext || {}; - - var terminalPriority = -Number.MAX_VALUE, - newScopeDirective, - controllerDirectives = previousCompileContext.controllerDirectives, - newIsolateScopeDirective = previousCompileContext.newIsolateScopeDirective, - templateDirective = previousCompileContext.templateDirective, - nonTlbTranscludeDirective = previousCompileContext.nonTlbTranscludeDirective, - hasTranscludeDirective = false, - hasElementTranscludeDirective = false, - $compileNode = templateAttrs.$$element = jqLite(compileNode), - directive, - directiveName, - $template, - replaceDirective = originalReplaceDirective, - childTranscludeFn = transcludeFn, - linkFn, - directiveValue; - - // executes all directives on the current element - for(var i = 0, ii = directives.length; i < ii; i++) { - directive = directives[i]; - var attrStart = directive.$$start; - var attrEnd = directive.$$end; - - // collect multiblock sections - if (attrStart) { - $compileNode = groupScan(compileNode, attrStart, attrEnd); - } - $template = undefined; - - if (terminalPriority > directive.priority) { - break; // prevent further processing of directives - } - - if (directiveValue = directive.scope) { - newScopeDirective = newScopeDirective || directive; - - // skip the check for directives with async templates, we'll check the derived sync - // directive when the template arrives - if (!directive.templateUrl) { - assertNoDuplicate('new/isolated scope', newIsolateScopeDirective, directive, - $compileNode); - if (isObject(directiveValue)) { - newIsolateScopeDirective = directive; - } - } - } - - directiveName = directive.name; - - if (!directive.templateUrl && directive.controller) { - directiveValue = directive.controller; - controllerDirectives = controllerDirectives || {}; - assertNoDuplicate("'" + directiveName + "' controller", - controllerDirectives[directiveName], directive, $compileNode); - controllerDirectives[directiveName] = directive; - } - - if (directiveValue = directive.transclude) { - hasTranscludeDirective = true; - - // Special case ngIf and ngRepeat so that we don't complain about duplicate transclusion. - // This option should only be used by directives that know how to how to safely handle element transclusion, - // where the transcluded nodes are added or replaced after linking. - if (!directive.$$tlb) { - assertNoDuplicate('transclusion', nonTlbTranscludeDirective, directive, $compileNode); - nonTlbTranscludeDirective = directive; - } - - if (directiveValue == 'element') { - hasElementTranscludeDirective = true; - terminalPriority = directive.priority; - $template = groupScan(compileNode, attrStart, attrEnd); - $compileNode = templateAttrs.$$element = - jqLite(document.createComment(' ' + directiveName + ': ' + - templateAttrs[directiveName] + ' ')); - compileNode = $compileNode[0]; - replaceWith(jqCollection, jqLite(sliceArgs($template)), compileNode); - - childTranscludeFn = compile($template, transcludeFn, terminalPriority, - replaceDirective && replaceDirective.name, { - // Don't pass in: - // - controllerDirectives - otherwise we'll create duplicates controllers - // - newIsolateScopeDirective or templateDirective - combining templates with - // element transclusion doesn't make sense. - // - // We need only nonTlbTranscludeDirective so that we prevent putting transclusion - // on the same element more than once. - nonTlbTranscludeDirective: nonTlbTranscludeDirective - }); - } else { - $template = jqLite(jqLiteClone(compileNode)).contents(); - $compileNode.empty(); // clear contents - childTranscludeFn = compile($template, transcludeFn); - } - } - - if (directive.template) { - assertNoDuplicate('template', templateDirective, directive, $compileNode); - templateDirective = directive; - - directiveValue = (isFunction(directive.template)) - ? directive.template($compileNode, templateAttrs) - : directive.template; - - directiveValue = denormalizeTemplate(directiveValue); - - if (directive.replace) { - replaceDirective = directive; - $template = jqLite('
' + - trim(directiveValue) + - '
').contents(); - compileNode = $template[0]; - - if ($template.length != 1 || compileNode.nodeType !== 1) { - throw $compileMinErr('tplrt', - "Template for directive '{0}' must have exactly one root element. {1}", - directiveName, ''); - } - - replaceWith(jqCollection, $compileNode, compileNode); - - var newTemplateAttrs = {$attr: {}}; - - // combine directives from the original node and from the template: - // - take the array of directives for this element - // - split it into two parts, those that already applied (processed) and those that weren't (unprocessed) - // - collect directives from the template and sort them by priority - // - combine directives as: processed + template + unprocessed - var templateDirectives = collectDirectives(compileNode, [], newTemplateAttrs); - var unprocessedDirectives = directives.splice(i + 1, directives.length - (i + 1)); - - if (newIsolateScopeDirective) { - markDirectivesAsIsolate(templateDirectives); - } - directives = directives.concat(templateDirectives).concat(unprocessedDirectives); - mergeTemplateAttributes(templateAttrs, newTemplateAttrs); - - ii = directives.length; - } else { - $compileNode.html(directiveValue); - } - } - - if (directive.templateUrl) { - assertNoDuplicate('template', templateDirective, directive, $compileNode); - templateDirective = directive; - - if (directive.replace) { - replaceDirective = directive; - } - - nodeLinkFn = compileTemplateUrl(directives.splice(i, directives.length - i), $compileNode, - templateAttrs, jqCollection, childTranscludeFn, preLinkFns, postLinkFns, { - controllerDirectives: controllerDirectives, - newIsolateScopeDirective: newIsolateScopeDirective, - templateDirective: templateDirective, - nonTlbTranscludeDirective: nonTlbTranscludeDirective - }); - ii = directives.length; - } else if (directive.compile) { - try { - linkFn = directive.compile($compileNode, templateAttrs, childTranscludeFn); - if (isFunction(linkFn)) { - addLinkFns(null, linkFn, attrStart, attrEnd); - } else if (linkFn) { - addLinkFns(linkFn.pre, linkFn.post, attrStart, attrEnd); - } - } catch (e) { - $exceptionHandler(e, startingTag($compileNode)); - } - } - - if (directive.terminal) { - nodeLinkFn.terminal = true; - terminalPriority = Math.max(terminalPriority, directive.priority); - } - - } - - nodeLinkFn.scope = newScopeDirective && newScopeDirective.scope === true; - nodeLinkFn.transclude = hasTranscludeDirective && childTranscludeFn; - - // might be normal or delayed nodeLinkFn depending on if templateUrl is present - return nodeLinkFn; - - //////////////////// - - function addLinkFns(pre, post, attrStart, attrEnd) { - if (pre) { - if (attrStart) pre = groupElementsLinkFnWrapper(pre, attrStart, attrEnd); - pre.require = directive.require; - if (newIsolateScopeDirective === directive || directive.$$isolateScope) { - pre = cloneAndAnnotateFn(pre, {isolateScope: true}); - } - preLinkFns.push(pre); - } - if (post) { - if (attrStart) post = groupElementsLinkFnWrapper(post, attrStart, attrEnd); - post.require = directive.require; - if (newIsolateScopeDirective === directive || directive.$$isolateScope) { - post = cloneAndAnnotateFn(post, {isolateScope: true}); - } - postLinkFns.push(post); - } - } - - - function getControllers(require, $element, elementControllers) { - var value, retrievalMethod = 'data', optional = false; - if (isString(require)) { - while((value = require.charAt(0)) == '^' || value == '?') { - require = require.substr(1); - if (value == '^') { - retrievalMethod = 'inheritedData'; - } - optional = optional || value == '?'; - } - value = null; - - if (elementControllers && retrievalMethod === 'data') { - value = elementControllers[require]; - } - value = value || $element[retrievalMethod]('$' + require + 'Controller'); - - if (!value && !optional) { - throw $compileMinErr('ctreq', - "Controller '{0}', required by directive '{1}', can't be found!", - require, directiveName); - } - return value; - } else if (isArray(require)) { - value = []; - forEach(require, function(require) { - value.push(getControllers(require, $element, elementControllers)); - }); - } - return value; - } - - - function nodeLinkFn(childLinkFn, scope, linkNode, $rootElement, boundTranscludeFn) { - var attrs, $element, i, ii, linkFn, controller, isolateScope, elementControllers = {}, transcludeFn; - - if (compileNode === linkNode) { - attrs = templateAttrs; - } else { - attrs = shallowCopy(templateAttrs, new Attributes(jqLite(linkNode), templateAttrs.$attr)); - } - $element = attrs.$$element; - - if (newIsolateScopeDirective) { - var LOCAL_REGEXP = /^\s*([@=&])(\??)\s*(\w*)\s*$/; - var $linkNode = jqLite(linkNode); - - isolateScope = scope.$new(true); - - if (templateDirective && (templateDirective === newIsolateScopeDirective.$$originalDirective)) { - $linkNode.data('$isolateScope', isolateScope) ; - } else { - $linkNode.data('$isolateScopeNoTemplate', isolateScope); - } - - - - safeAddClass($linkNode, 'ng-isolate-scope'); - - forEach(newIsolateScopeDirective.scope, function(definition, scopeName) { - var match = definition.match(LOCAL_REGEXP) || [], - attrName = match[3] || scopeName, - optional = (match[2] == '?'), - mode = match[1], // @, =, or & - lastValue, - parentGet, parentSet, compare; - - isolateScope.$$isolateBindings[scopeName] = mode + attrName; - - switch (mode) { - - case '@': - attrs.$observe(attrName, function(value) { - isolateScope[scopeName] = value; - }); - attrs.$$observers[attrName].$$scope = scope; - if( attrs[attrName] ) { - // If the attribute has been provided then we trigger an interpolation to ensure - // the value is there for use in the link fn - isolateScope[scopeName] = $interpolate(attrs[attrName])(scope); - } - break; - - case '=': - if (optional && !attrs[attrName]) { - return; - } - parentGet = $parse(attrs[attrName]); - if (parentGet.literal) { - compare = equals; - } else { - compare = function(a,b) { return a === b; }; - } - parentSet = parentGet.assign || function() { - // reset the change, or we will throw this exception on every $digest - lastValue = isolateScope[scopeName] = parentGet(scope); - throw $compileMinErr('nonassign', - "Expression '{0}' used with directive '{1}' is non-assignable!", - attrs[attrName], newIsolateScopeDirective.name); - }; - lastValue = isolateScope[scopeName] = parentGet(scope); - isolateScope.$watch(function parentValueWatch() { - var parentValue = parentGet(scope); - if (!compare(parentValue, isolateScope[scopeName])) { - // we are out of sync and need to copy - if (!compare(parentValue, lastValue)) { - // parent changed and it has precedence - isolateScope[scopeName] = parentValue; - } else { - // if the parent can be assigned then do so - parentSet(scope, parentValue = isolateScope[scopeName]); - } - } - return lastValue = parentValue; - }, null, parentGet.literal); - break; - - case '&': - parentGet = $parse(attrs[attrName]); - isolateScope[scopeName] = function(locals) { - return parentGet(scope, locals); - }; - break; - - default: - throw $compileMinErr('iscp', - "Invalid isolate scope definition for directive '{0}'." + - " Definition: {... {1}: '{2}' ...}", - newIsolateScopeDirective.name, scopeName, definition); - } - }); - } - transcludeFn = boundTranscludeFn && controllersBoundTransclude; - if (controllerDirectives) { - forEach(controllerDirectives, function(directive) { - var locals = { - $scope: directive === newIsolateScopeDirective || directive.$$isolateScope ? isolateScope : scope, - $element: $element, - $attrs: attrs, - $transclude: transcludeFn - }, controllerInstance; - - controller = directive.controller; - if (controller == '@') { - controller = attrs[directive.name]; - } - - controllerInstance = $controller(controller, locals); - // For directives with element transclusion the element is a comment, - // but jQuery .data doesn't support attaching data to comment nodes as it's hard to - // clean up (http://bugs.jquery.com/ticket/8335). - // Instead, we save the controllers for the element in a local hash and attach to .data - // later, once we have the actual element. - elementControllers[directive.name] = controllerInstance; - if (!hasElementTranscludeDirective) { - $element.data('$' + directive.name + 'Controller', controllerInstance); - } - - if (directive.controllerAs) { - locals.$scope[directive.controllerAs] = controllerInstance; - } - }); - } - - // PRELINKING - for(i = 0, ii = preLinkFns.length; i < ii; i++) { - try { - linkFn = preLinkFns[i]; - linkFn(linkFn.isolateScope ? isolateScope : scope, $element, attrs, - linkFn.require && getControllers(linkFn.require, $element, elementControllers), transcludeFn); - } catch (e) { - $exceptionHandler(e, startingTag($element)); - } - } - - // RECURSION - // We only pass the isolate scope, if the isolate directive has a template, - // otherwise the child elements do not belong to the isolate directive. - var scopeToChild = scope; - if (newIsolateScopeDirective && (newIsolateScopeDirective.template || newIsolateScopeDirective.templateUrl === null)) { - scopeToChild = isolateScope; - } - childLinkFn && childLinkFn(scopeToChild, linkNode.childNodes, undefined, boundTranscludeFn); - - // POSTLINKING - for(i = postLinkFns.length - 1; i >= 0; i--) { - try { - linkFn = postLinkFns[i]; - linkFn(linkFn.isolateScope ? isolateScope : scope, $element, attrs, - linkFn.require && getControllers(linkFn.require, $element, elementControllers), transcludeFn); - } catch (e) { - $exceptionHandler(e, startingTag($element)); - } - } - - // This is the function that is injected as `$transclude`. - function controllersBoundTransclude(scope, cloneAttachFn) { - var transcludeControllers; - - // no scope passed - if (arguments.length < 2) { - cloneAttachFn = scope; - scope = undefined; - } - - if (hasElementTranscludeDirective) { - transcludeControllers = elementControllers; - } - - return boundTranscludeFn(scope, cloneAttachFn, transcludeControllers); - } - } - } - - function markDirectivesAsIsolate(directives) { - // mark all directives as needing isolate scope. - for (var j = 0, jj = directives.length; j < jj; j++) { - directives[j] = inherit(directives[j], {$$isolateScope: true}); - } - } - - /** - * looks up the directive and decorates it with exception handling and proper parameters. We - * call this the boundDirective. - * - * @param {string} name name of the directive to look up. - * @param {string} location The directive must be found in specific format. - * String containing any of theses characters: - * - * * `E`: element name - * * `A': attribute - * * `C`: class - * * `M`: comment - * @returns true if directive was added. - */ - function addDirective(tDirectives, name, location, maxPriority, ignoreDirective, startAttrName, - endAttrName) { - if (name === ignoreDirective) return null; - var match = null; - if (hasDirectives.hasOwnProperty(name)) { - for(var directive, directives = $injector.get(name + Suffix), - i = 0, ii = directives.length; i directive.priority) && - directive.restrict.indexOf(location) != -1) { - if (startAttrName) { - directive = inherit(directive, {$$start: startAttrName, $$end: endAttrName}); - } - tDirectives.push(directive); - match = directive; - } - } catch(e) { $exceptionHandler(e); } - } - } - return match; - } - - - /** - * When the element is replaced with HTML template then the new attributes - * on the template need to be merged with the existing attributes in the DOM. - * The desired effect is to have both of the attributes present. - * - * @param {object} dst destination attributes (original DOM) - * @param {object} src source attributes (from the directive template) - */ - function mergeTemplateAttributes(dst, src) { - var srcAttr = src.$attr, - dstAttr = dst.$attr, - $element = dst.$$element; - - // reapply the old attributes to the new element - forEach(dst, function(value, key) { - if (key.charAt(0) != '$') { - if (src[key]) { - value += (key === 'style' ? ';' : ' ') + src[key]; - } - dst.$set(key, value, true, srcAttr[key]); - } - }); - - // copy the new attributes on the old attrs object - forEach(src, function(value, key) { - if (key == 'class') { - safeAddClass($element, value); - dst['class'] = (dst['class'] ? dst['class'] + ' ' : '') + value; - } else if (key == 'style') { - $element.attr('style', $element.attr('style') + ';' + value); - dst['style'] = (dst['style'] ? dst['style'] + ';' : '') + value; - // `dst` will never contain hasOwnProperty as DOM parser won't let it. - // You will get an "InvalidCharacterError: DOM Exception 5" error if you - // have an attribute like "has-own-property" or "data-has-own-property", etc. - } else if (key.charAt(0) != '$' && !dst.hasOwnProperty(key)) { - dst[key] = value; - dstAttr[key] = srcAttr[key]; - } - }); - } - - - function compileTemplateUrl(directives, $compileNode, tAttrs, - $rootElement, childTranscludeFn, preLinkFns, postLinkFns, previousCompileContext) { - var linkQueue = [], - afterTemplateNodeLinkFn, - afterTemplateChildLinkFn, - beforeTemplateCompileNode = $compileNode[0], - origAsyncDirective = directives.shift(), - // The fact that we have to copy and patch the directive seems wrong! - derivedSyncDirective = extend({}, origAsyncDirective, { - templateUrl: null, transclude: null, replace: null, $$originalDirective: origAsyncDirective - }), - templateUrl = (isFunction(origAsyncDirective.templateUrl)) - ? origAsyncDirective.templateUrl($compileNode, tAttrs) - : origAsyncDirective.templateUrl; - - $compileNode.empty(); - - $http.get($sce.getTrustedResourceUrl(templateUrl), {cache: $templateCache}). - success(function(content) { - var compileNode, tempTemplateAttrs, $template, childBoundTranscludeFn; - - content = denormalizeTemplate(content); - - if (origAsyncDirective.replace) { - $template = jqLite('
' + trim(content) + '
').contents(); - compileNode = $template[0]; - - if ($template.length != 1 || compileNode.nodeType !== 1) { - throw $compileMinErr('tplrt', - "Template for directive '{0}' must have exactly one root element. {1}", - origAsyncDirective.name, templateUrl); - } - - tempTemplateAttrs = {$attr: {}}; - replaceWith($rootElement, $compileNode, compileNode); - var templateDirectives = collectDirectives(compileNode, [], tempTemplateAttrs); - - if (isObject(origAsyncDirective.scope)) { - markDirectivesAsIsolate(templateDirectives); - } - directives = templateDirectives.concat(directives); - mergeTemplateAttributes(tAttrs, tempTemplateAttrs); - } else { - compileNode = beforeTemplateCompileNode; - $compileNode.html(content); - } - - directives.unshift(derivedSyncDirective); - - afterTemplateNodeLinkFn = applyDirectivesToNode(directives, compileNode, tAttrs, - childTranscludeFn, $compileNode, origAsyncDirective, preLinkFns, postLinkFns, - previousCompileContext); - forEach($rootElement, function(node, i) { - if (node == compileNode) { - $rootElement[i] = $compileNode[0]; - } - }); - afterTemplateChildLinkFn = compileNodes($compileNode[0].childNodes, childTranscludeFn); - - - while(linkQueue.length) { - var scope = linkQueue.shift(), - beforeTemplateLinkNode = linkQueue.shift(), - linkRootElement = linkQueue.shift(), - boundTranscludeFn = linkQueue.shift(), - linkNode = $compileNode[0]; - - if (beforeTemplateLinkNode !== beforeTemplateCompileNode) { - // it was cloned therefore we have to clone as well. - linkNode = jqLiteClone(compileNode); - replaceWith(linkRootElement, jqLite(beforeTemplateLinkNode), linkNode); - } - if (afterTemplateNodeLinkFn.transclude) { - childBoundTranscludeFn = createBoundTranscludeFn(scope, afterTemplateNodeLinkFn.transclude); - } else { - childBoundTranscludeFn = boundTranscludeFn; - } - afterTemplateNodeLinkFn(afterTemplateChildLinkFn, scope, linkNode, $rootElement, - childBoundTranscludeFn); - } - linkQueue = null; - }). - error(function(response, code, headers, config) { - throw $compileMinErr('tpload', 'Failed to load template: {0}', config.url); - }); - - return function delayedNodeLinkFn(ignoreChildLinkFn, scope, node, rootElement, boundTranscludeFn) { - if (linkQueue) { - linkQueue.push(scope); - linkQueue.push(node); - linkQueue.push(rootElement); - linkQueue.push(boundTranscludeFn); - } else { - afterTemplateNodeLinkFn(afterTemplateChildLinkFn, scope, node, rootElement, boundTranscludeFn); - } - }; - } - - - /** - * Sorting function for bound directives. - */ - function byPriority(a, b) { - var diff = b.priority - a.priority; - if (diff !== 0) return diff; - if (a.name !== b.name) return (a.name < b.name) ? -1 : 1; - return a.index - b.index; - } - - - function assertNoDuplicate(what, previousDirective, directive, element) { - if (previousDirective) { - throw $compileMinErr('multidir', 'Multiple directives [{0}, {1}] asking for {2} on: {3}', - previousDirective.name, directive.name, what, startingTag(element)); - } - } - - - function addTextInterpolateDirective(directives, text) { - var interpolateFn = $interpolate(text, true); - if (interpolateFn) { - directives.push({ - priority: 0, - compile: valueFn(function textInterpolateLinkFn(scope, node) { - var parent = node.parent(), - bindings = parent.data('$binding') || []; - bindings.push(interpolateFn); - safeAddClass(parent.data('$binding', bindings), 'ng-binding'); - scope.$watch(interpolateFn, function interpolateFnWatchAction(value) { - node[0].nodeValue = value; - }); - }) - }); - } - } - - - function getTrustedContext(node, attrNormalizedName) { - if (attrNormalizedName == "srcdoc") { - return $sce.HTML; - } - var tag = nodeName_(node); - // maction[xlink:href] can source SVG. It's not limited to . - if (attrNormalizedName == "xlinkHref" || - (tag == "FORM" && attrNormalizedName == "action") || - (tag != "IMG" && (attrNormalizedName == "src" || - attrNormalizedName == "ngSrc"))) { - return $sce.RESOURCE_URL; - } - } - - - function addAttrInterpolateDirective(node, directives, value, name) { - var interpolateFn = $interpolate(value, true); - - // no interpolation found -> ignore - if (!interpolateFn) return; - - - if (name === "multiple" && nodeName_(node) === "SELECT") { - throw $compileMinErr("selmulti", - "Binding to the 'multiple' attribute is not supported. Element: {0}", - startingTag(node)); - } - - directives.push({ - priority: 100, - compile: function() { - return { - pre: function attrInterpolatePreLinkFn(scope, element, attr) { - var $$observers = (attr.$$observers || (attr.$$observers = {})); - - if (EVENT_HANDLER_ATTR_REGEXP.test(name)) { - throw $compileMinErr('nodomevents', - "Interpolations for HTML DOM event attributes are disallowed. Please use the " + - "ng- versions (such as ng-click instead of onclick) instead."); - } - - // we need to interpolate again, in case the attribute value has been updated - // (e.g. by another directive's compile function) - interpolateFn = $interpolate(attr[name], true, getTrustedContext(node, name)); - - // if attribute was updated so that there is no interpolation going on we don't want to - // register any observers - if (!interpolateFn) return; - - // TODO(i): this should likely be attr.$set(name, iterpolateFn(scope) so that we reset the - // actual attr value - attr[name] = interpolateFn(scope); - ($$observers[name] || ($$observers[name] = [])).$$inter = true; - (attr.$$observers && attr.$$observers[name].$$scope || scope). - $watch(interpolateFn, function interpolateFnWatchAction(newValue, oldValue) { - //special case for class attribute addition + removal - //so that class changes can tap into the animation - //hooks provided by the $animate service. Be sure to - //skip animations when the first digest occurs (when - //both the new and the old values are the same) since - //the CSS classes are the non-interpolated values - if(name === 'class' && newValue != oldValue) { - attr.$updateClass(newValue, oldValue); - } else { - attr.$set(name, newValue); - } - }); - } - }; - } - }); - } - - - /** - * This is a special jqLite.replaceWith, which can replace items which - * have no parents, provided that the containing jqLite collection is provided. - * - * @param {JqLite=} $rootElement The root of the compile tree. Used so that we can replace nodes - * in the root of the tree. - * @param {JqLite} elementsToRemove The jqLite element which we are going to replace. We keep - * the shell, but replace its DOM node reference. - * @param {Node} newNode The new DOM node. - */ - function replaceWith($rootElement, elementsToRemove, newNode) { - var firstElementToRemove = elementsToRemove[0], - removeCount = elementsToRemove.length, - parent = firstElementToRemove.parentNode, - i, ii; - - if ($rootElement) { - for(i = 0, ii = $rootElement.length; i < ii; i++) { - if ($rootElement[i] == firstElementToRemove) { - $rootElement[i++] = newNode; - for (var j = i, j2 = j + removeCount - 1, - jj = $rootElement.length; - j < jj; j++, j2++) { - if (j2 < jj) { - $rootElement[j] = $rootElement[j2]; - } else { - delete $rootElement[j]; - } - } - $rootElement.length -= removeCount - 1; - break; - } - } - } - - if (parent) { - parent.replaceChild(newNode, firstElementToRemove); - } - var fragment = document.createDocumentFragment(); - fragment.appendChild(firstElementToRemove); - newNode[jqLite.expando] = firstElementToRemove[jqLite.expando]; - for (var k = 1, kk = elementsToRemove.length; k < kk; k++) { - var element = elementsToRemove[k]; - jqLite(element).remove(); // must do this way to clean up expando - fragment.appendChild(element); - delete elementsToRemove[k]; - } - - elementsToRemove[0] = newNode; - elementsToRemove.length = 1; - } - - - function cloneAndAnnotateFn(fn, annotation) { - return extend(function() { return fn.apply(null, arguments); }, fn, annotation); - } - }]; -} - -var PREFIX_REGEXP = /^(x[\:\-_]|data[\:\-_])/i; -/** - * Converts all accepted directives format into proper directive name. - * All of these will become 'myDirective': - * my:Directive - * my-directive - * x-my-directive - * data-my:directive - * - * Also there is special case for Moz prefix starting with upper case letter. - * @param name Name to normalize - */ -function directiveNormalize(name) { - return camelCase(name.replace(PREFIX_REGEXP, '')); -} - -/** - * @ngdoc object - * @name ng.$compile.directive.Attributes - * - * @description - * A shared object between directive compile / linking functions which contains normalized DOM - * element attributes. The values reflect current binding state `{{ }}`. The normalization is - * needed since all of these are treated as equivalent in Angular: - * - * - */ - -/** - * @ngdoc property - * @name ng.$compile.directive.Attributes#$attr - * @propertyOf ng.$compile.directive.Attributes - * @returns {object} A map of DOM element attribute names to the normalized name. This is - * needed to do reverse lookup from normalized name back to actual name. - */ - - -/** - * @ngdoc function - * @name ng.$compile.directive.Attributes#$set - * @methodOf ng.$compile.directive.Attributes - * @function - * - * @description - * Set DOM element attribute value. - * - * - * @param {string} name Normalized element attribute name of the property to modify. The name is - * revers translated using the {@link ng.$compile.directive.Attributes#$attr $attr} - * property to the original name. - * @param {string} value Value to set the attribute to. The value can be an interpolated string. - */ - - - -/** - * Closure compiler type information - */ - -function nodesetLinkingFn( - /* angular.Scope */ scope, - /* NodeList */ nodeList, - /* Element */ rootElement, - /* function(Function) */ boundTranscludeFn -){} - -function directiveLinkingFn( - /* nodesetLinkingFn */ nodesetLinkingFn, - /* angular.Scope */ scope, - /* Node */ node, - /* Element */ rootElement, - /* function(Function) */ boundTranscludeFn -){} - -function tokenDifference(str1, str2) { - var values = '', - tokens1 = str1.split(/\s+/), - tokens2 = str2.split(/\s+/); - - outer: - for(var i = 0; i < tokens1.length; i++) { - var token = tokens1[i]; - for(var j = 0; j < tokens2.length; j++) { - if(token == tokens2[j]) continue outer; - } - values += (values.length > 0 ? ' ' : '') + token; - } - return values; -} - -/** - * @ngdoc object - * @name ng.$controllerProvider - * @description - * The {@link ng.$controller $controller service} is used by Angular to create new - * controllers. - * - * This provider allows controller registration via the - * {@link ng.$controllerProvider#methods_register register} method. - */ -function $ControllerProvider() { - var controllers = {}, - CNTRL_REG = /^(\S+)(\s+as\s+(\w+))?$/; - - - /** - * @ngdoc function - * @name ng.$controllerProvider#register - * @methodOf ng.$controllerProvider - * @param {string|Object} name Controller name, or an object map of controllers where the keys are - * the names and the values are the constructors. - * @param {Function|Array} constructor Controller constructor fn (optionally decorated with DI - * annotations in the array notation). - */ - this.register = function(name, constructor) { - assertNotHasOwnProperty(name, 'controller'); - if (isObject(name)) { - extend(controllers, name); - } else { - controllers[name] = constructor; - } - }; - - - this.$get = ['$injector', '$window', function($injector, $window) { - - /** - * @ngdoc function - * @name ng.$controller - * @requires $injector - * - * @param {Function|string} constructor If called with a function then it's considered to be the - * controller constructor function. Otherwise it's considered to be a string which is used - * to retrieve the controller constructor using the following steps: - * - * * check if a controller with given name is registered via `$controllerProvider` - * * check if evaluating the string on the current scope returns a constructor - * * check `window[constructor]` on the global `window` object - * - * @param {Object} locals Injection locals for Controller. - * @return {Object} Instance of given controller. - * - * @description - * `$controller` service is responsible for instantiating controllers. - * - * It's just a simple call to {@link AUTO.$injector $injector}, but extracted into - * a service, so that one can override this service with {@link https://gist.github.com/1649788 - * BC version}. - */ - return function(expression, locals) { - var instance, match, constructor, identifier; - - if(isString(expression)) { - match = expression.match(CNTRL_REG), - constructor = match[1], - identifier = match[3]; - expression = controllers.hasOwnProperty(constructor) - ? controllers[constructor] - : getter(locals.$scope, constructor, true) || getter($window, constructor, true); - - assertArgFn(expression, constructor, true); - } - - instance = $injector.instantiate(expression, locals); - - if (identifier) { - if (!(locals && typeof locals.$scope == 'object')) { - throw minErr('$controller')('noscp', - "Cannot export controller '{0}' as '{1}'! No $scope object provided via `locals`.", - constructor || expression.name, identifier); - } - - locals.$scope[identifier] = instance; - } - - return instance; - }; - }]; -} - -/** - * @ngdoc object - * @name ng.$document - * @requires $window - * - * @description - * A {@link angular.element jQuery (lite)}-wrapped reference to the browser's `window.document` - * element. - */ -function $DocumentProvider(){ - this.$get = ['$window', function(window){ - return jqLite(window.document); - }]; -} - -/** - * @ngdoc function - * @name ng.$exceptionHandler - * @requires $log - * - * @description - * Any uncaught exception in angular expressions is delegated to this service. - * The default implementation simply delegates to `$log.error` which logs it into - * the browser console. - * - * In unit tests, if `angular-mocks.js` is loaded, this service is overridden by - * {@link ngMock.$exceptionHandler mock $exceptionHandler} which aids in testing. - * - * ## Example: - * - *
- *   angular.module('exceptionOverride', []).factory('$exceptionHandler', function () {
- *     return function (exception, cause) {
- *       exception.message += ' (caused by "' + cause + '")';
- *       throw exception;
- *     };
- *   });
- * 
- * - * This example will override the normal action of `$exceptionHandler`, to make angular - * exceptions fail hard when they happen, instead of just logging to the console. - * - * @param {Error} exception Exception associated with the error. - * @param {string=} cause optional information about the context in which - * the error was thrown. - * - */ -function $ExceptionHandlerProvider() { - this.$get = ['$log', function($log) { - return function(exception, cause) { - $log.error.apply($log, arguments); - }; - }]; -} - -/** - * Parse headers into key value object - * - * @param {string} headers Raw headers as a string - * @returns {Object} Parsed headers as key value object - */ -function parseHeaders(headers) { - var parsed = {}, key, val, i; - - if (!headers) return parsed; - - forEach(headers.split('\n'), function(line) { - i = line.indexOf(':'); - key = lowercase(trim(line.substr(0, i))); - val = trim(line.substr(i + 1)); - - if (key) { - if (parsed[key]) { - parsed[key] += ', ' + val; - } else { - parsed[key] = val; - } - } - }); - - return parsed; -} - - -/** - * Returns a function that provides access to parsed headers. - * - * Headers are lazy parsed when first requested. - * @see parseHeaders - * - * @param {(string|Object)} headers Headers to provide access to. - * @returns {function(string=)} Returns a getter function which if called with: - * - * - if called with single an argument returns a single header value or null - * - if called with no arguments returns an object containing all headers. - */ -function headersGetter(headers) { - var headersObj = isObject(headers) ? headers : undefined; - - return function(name) { - if (!headersObj) headersObj = parseHeaders(headers); - - if (name) { - return headersObj[lowercase(name)] || null; - } - - return headersObj; - }; -} - - -/** - * Chain all given functions - * - * This function is used for both request and response transforming - * - * @param {*} data Data to transform. - * @param {function(string=)} headers Http headers getter fn. - * @param {(function|Array.)} fns Function or an array of functions. - * @returns {*} Transformed data. - */ -function transformData(data, headers, fns) { - if (isFunction(fns)) - return fns(data, headers); - - forEach(fns, function(fn) { - data = fn(data, headers); - }); - - return data; -} - - -function isSuccess(status) { - return 200 <= status && status < 300; -} - - -function $HttpProvider() { - var JSON_START = /^\s*(\[|\{[^\{])/, - JSON_END = /[\}\]]\s*$/, - PROTECTION_PREFIX = /^\)\]\}',?\n/, - CONTENT_TYPE_APPLICATION_JSON = {'Content-Type': 'application/json;charset=utf-8'}; - - var defaults = this.defaults = { - // transform incoming response data - transformResponse: [function(data) { - if (isString(data)) { - // strip json vulnerability protection prefix - data = data.replace(PROTECTION_PREFIX, ''); - if (JSON_START.test(data) && JSON_END.test(data)) - data = fromJson(data); - } - return data; - }], - - // transform outgoing request data - transformRequest: [function(d) { - return isObject(d) && !isFile(d) ? toJson(d) : d; - }], - - // default headers - headers: { - common: { - 'Accept': 'application/json, text/plain, */*' - }, - post: CONTENT_TYPE_APPLICATION_JSON, - put: CONTENT_TYPE_APPLICATION_JSON, - patch: CONTENT_TYPE_APPLICATION_JSON - }, - - xsrfCookieName: 'XSRF-TOKEN', - xsrfHeaderName: 'X-XSRF-TOKEN' - }; - - /** - * Are ordered by request, i.e. they are applied in the same order as the - * array, on request, but reverse order, on response. - */ - var interceptorFactories = this.interceptors = []; - - /** - * For historical reasons, response interceptors are ordered by the order in which - * they are applied to the response. (This is the opposite of interceptorFactories) - */ - var responseInterceptorFactories = this.responseInterceptors = []; - - this.$get = ['$httpBackend', '$browser', '$cacheFactory', '$rootScope', '$q', '$injector', - function($httpBackend, $browser, $cacheFactory, $rootScope, $q, $injector) { - - var defaultCache = $cacheFactory('$http'); - - /** - * Interceptors stored in reverse order. Inner interceptors before outer interceptors. - * The reversal is needed so that we can build up the interception chain around the - * server request. - */ - var reversedInterceptors = []; - - forEach(interceptorFactories, function(interceptorFactory) { - reversedInterceptors.unshift(isString(interceptorFactory) - ? $injector.get(interceptorFactory) : $injector.invoke(interceptorFactory)); - }); - - forEach(responseInterceptorFactories, function(interceptorFactory, index) { - var responseFn = isString(interceptorFactory) - ? $injector.get(interceptorFactory) - : $injector.invoke(interceptorFactory); - - /** - * Response interceptors go before "around" interceptors (no real reason, just - * had to pick one.) But they are already reversed, so we can't use unshift, hence - * the splice. - */ - reversedInterceptors.splice(index, 0, { - response: function(response) { - return responseFn($q.when(response)); - }, - responseError: function(response) { - return responseFn($q.reject(response)); - } - }); - }); - - - /** - * @ngdoc function - * @name ng.$http - * @requires $httpBackend - * @requires $browser - * @requires $cacheFactory - * @requires $rootScope - * @requires $q - * @requires $injector - * - * @description - * The `$http` service is a core Angular service that facilitates communication with the remote - * HTTP servers via the browser's {@link https://developer.mozilla.org/en/xmlhttprequest - * XMLHttpRequest} object or via {@link http://en.wikipedia.org/wiki/JSONP JSONP}. - * - * For unit testing applications that use `$http` service, see - * {@link ngMock.$httpBackend $httpBackend mock}. - * - * For a higher level of abstraction, please check out the {@link ngResource.$resource - * $resource} service. - * - * The $http API is based on the {@link ng.$q deferred/promise APIs} exposed by - * the $q service. While for simple usage patterns this doesn't matter much, for advanced usage - * it is important to familiarize yourself with these APIs and the guarantees they provide. - * - * - * # General usage - * The `$http` service is a function which takes a single argument — a configuration object — - * that is used to generate an HTTP request and returns a {@link ng.$q promise} - * with two $http specific methods: `success` and `error`. - * - *
-     *   $http({method: 'GET', url: '/someUrl'}).
-     *     success(function(data, status, headers, config) {
-     *       // this callback will be called asynchronously
-     *       // when the response is available
-     *     }).
-     *     error(function(data, status, headers, config) {
-     *       // called asynchronously if an error occurs
-     *       // or server returns response with an error status.
-     *     });
-     * 
- * - * Since the returned value of calling the $http function is a `promise`, you can also use - * the `then` method to register callbacks, and these callbacks will receive a single argument – - * an object representing the response. See the API signature and type info below for more - * details. - * - * A response status code between 200 and 299 is considered a success status and - * will result in the success callback being called. Note that if the response is a redirect, - * XMLHttpRequest will transparently follow it, meaning that the error callback will not be - * called for such responses. - * - * # Calling $http from outside AngularJS - * The `$http` service will not actually send the request until the next `$digest()` is - * executed. Normally this is not an issue, since almost all the time your call to `$http` will - * be from within a `$apply()` block. - * If you are calling `$http` from outside Angular, then you should wrap it in a call to - * `$apply` to cause a $digest to occur and also to handle errors in the block correctly. - * - * ``` - * $scope.$apply(function() { - * $http(...); - * }); - * ``` - * - * # Writing Unit Tests that use $http - * When unit testing you are mostly responsible for scheduling the `$digest` cycle. If you do - * not trigger a `$digest` before calling `$httpBackend.flush()` then the request will not have - * been made and `$httpBackend.expect(...)` expectations will fail. The solution is to run the - * code that calls the `$http()` method inside a $apply block as explained in the previous - * section. - * - * ``` - * $httpBackend.expectGET(...); - * $scope.$apply(function() { - * $http.get(...); - * }); - * $httpBackend.flush(); - * ``` - * - * # Shortcut methods - * - * Since all invocations of the $http service require passing in an HTTP method and URL, and - * POST/PUT requests require request data to be provided as well, shortcut methods - * were created: - * - *
-     *   $http.get('/someUrl').success(successCallback);
-     *   $http.post('/someUrl', data).success(successCallback);
-     * 
- * - * Complete list of shortcut methods: - * - * - {@link ng.$http#methods_get $http.get} - * - {@link ng.$http#methods_head $http.head} - * - {@link ng.$http#methods_post $http.post} - * - {@link ng.$http#methods_put $http.put} - * - {@link ng.$http#methods_delete $http.delete} - * - {@link ng.$http#methods_jsonp $http.jsonp} - * - * - * # Setting HTTP Headers - * - * The $http service will automatically add certain HTTP headers to all requests. These defaults - * can be fully configured by accessing the `$httpProvider.defaults.headers` configuration - * object, which currently contains this default configuration: - * - * - `$httpProvider.defaults.headers.common` (headers that are common for all requests): - * - `Accept: application/json, text/plain, * / *` - * - `$httpProvider.defaults.headers.post`: (header defaults for POST requests) - * - `Content-Type: application/json` - * - `$httpProvider.defaults.headers.put` (header defaults for PUT requests) - * - `Content-Type: application/json` - * - * To add or overwrite these defaults, simply add or remove a property from these configuration - * objects. To add headers for an HTTP method other than POST or PUT, simply add a new object - * with the lowercased HTTP method name as the key, e.g. - * `$httpProvider.defaults.headers.get = { 'My-Header' : 'value' }. - * - * The defaults can also be set at runtime via the `$http.defaults` object in the same - * fashion. In addition, you can supply a `headers` property in the config object passed when - * calling `$http(config)`, which overrides the defaults without changing them globally. - * - * - * # Transforming Requests and Responses - * - * Both requests and responses can be transformed using transform functions. By default, Angular - * applies these transformations: - * - * Request transformations: - * - * - If the `data` property of the request configuration object contains an object, serialize it - * into JSON format. - * - * Response transformations: - * - * - If XSRF prefix is detected, strip it (see Security Considerations section below). - * - If JSON response is detected, deserialize it using a JSON parser. - * - * To globally augment or override the default transforms, modify the - * `$httpProvider.defaults.transformRequest` and `$httpProvider.defaults.transformResponse` - * properties. These properties are by default an array of transform functions, which allows you - * to `push` or `unshift` a new transformation function into the transformation chain. You can - * also decide to completely override any default transformations by assigning your - * transformation functions to these properties directly without the array wrapper. - * - * Similarly, to locally override the request/response transforms, augment the - * `transformRequest` and/or `transformResponse` properties of the configuration object passed - * into `$http`. - * - * - * # Caching - * - * To enable caching, set the request configuration `cache` property to `true` (to use default - * cache) or to a custom cache object (built with {@link ng.$cacheFactory `$cacheFactory`}). - * When the cache is enabled, `$http` stores the response from the server in the specified - * cache. The next time the same request is made, the response is served from the cache without - * sending a request to the server. - * - * Note that even if the response is served from cache, delivery of the data is asynchronous in - * the same way that real requests are. - * - * If there are multiple GET requests for the same URL that should be cached using the same - * cache, but the cache is not populated yet, only one request to the server will be made and - * the remaining requests will be fulfilled using the response from the first request. - * - * You can change the default cache to a new object (built with - * {@link ng.$cacheFactory `$cacheFactory`}) by updating the - * {@link ng.$http#properties_defaults `$http.defaults.cache`} property. All requests who set - * their `cache` property to `true` will now use this cache object. - * - * If you set the default cache to `false` then only requests that specify their own custom - * cache object will be cached. - * - * # Interceptors - * - * Before you start creating interceptors, be sure to understand the - * {@link ng.$q $q and deferred/promise APIs}. - * - * For purposes of global error handling, authentication, or any kind of synchronous or - * asynchronous pre-processing of request or postprocessing of responses, it is desirable to be - * able to intercept requests before they are handed to the server and - * responses before they are handed over to the application code that - * initiated these requests. The interceptors leverage the {@link ng.$q - * promise APIs} to fulfill this need for both synchronous and asynchronous pre-processing. - * - * The interceptors are service factories that are registered with the `$httpProvider` by - * adding them to the `$httpProvider.interceptors` array. The factory is called and - * injected with dependencies (if specified) and returns the interceptor. - * - * There are two kinds of interceptors (and two kinds of rejection interceptors): - * - * * `request`: interceptors get called with http `config` object. The function is free to - * modify the `config` or create a new one. The function needs to return the `config` - * directly or as a promise. - * * `requestError`: interceptor gets called when a previous interceptor threw an error or - * resolved with a rejection. - * * `response`: interceptors get called with http `response` object. The function is free to - * modify the `response` or create a new one. The function needs to return the `response` - * directly or as a promise. - * * `responseError`: interceptor gets called when a previous interceptor threw an error or - * resolved with a rejection. - * - * - *
-     *   // register the interceptor as a service
-     *   $provide.factory('myHttpInterceptor', function($q, dependency1, dependency2) {
-     *     return {
-     *       // optional method
-     *       'request': function(config) {
-     *         // do something on success
-     *         return config || $q.when(config);
-     *       },
-     *
-     *       // optional method
-     *      'requestError': function(rejection) {
-     *         // do something on error
-     *         if (canRecover(rejection)) {
-     *           return responseOrNewPromise
-     *         }
-     *         return $q.reject(rejection);
-     *       },
-     *
-     *
-     *
-     *       // optional method
-     *       'response': function(response) {
-     *         // do something on success
-     *         return response || $q.when(response);
-     *       },
-     *
-     *       // optional method
-     *      'responseError': function(rejection) {
-     *         // do something on error
-     *         if (canRecover(rejection)) {
-     *           return responseOrNewPromise
-     *         }
-     *         return $q.reject(rejection);
-     *       };
-     *     }
-     *   });
-     *
-     *   $httpProvider.interceptors.push('myHttpInterceptor');
-     *
-     *
-     *   // register the interceptor via an anonymous factory
-     *   $httpProvider.interceptors.push(function($q, dependency1, dependency2) {
-     *     return {
-     *      'request': function(config) {
-     *          // same as above
-     *       },
-     *       'response': function(response) {
-     *          // same as above
-     *       }
-     *     };
-     *   });
-     * 
- * - * # Response interceptors (DEPRECATED) - * - * Before you start creating interceptors, be sure to understand the - * {@link ng.$q $q and deferred/promise APIs}. - * - * For purposes of global error handling, authentication or any kind of synchronous or - * asynchronous preprocessing of received responses, it is desirable to be able to intercept - * responses for http requests before they are handed over to the application code that - * initiated these requests. The response interceptors leverage the {@link ng.$q - * promise apis} to fulfil this need for both synchronous and asynchronous preprocessing. - * - * The interceptors are service factories that are registered with the $httpProvider by - * adding them to the `$httpProvider.responseInterceptors` array. The factory is called and - * injected with dependencies (if specified) and returns the interceptor — a function that - * takes a {@link ng.$q promise} and returns the original or a new promise. - * - *
-     *   // register the interceptor as a service
-     *   $provide.factory('myHttpInterceptor', function($q, dependency1, dependency2) {
-     *     return function(promise) {
-     *       return promise.then(function(response) {
-     *         // do something on success
-     *         return response;
-     *       }, function(response) {
-     *         // do something on error
-     *         if (canRecover(response)) {
-     *           return responseOrNewPromise
-     *         }
-     *         return $q.reject(response);
-     *       });
-     *     }
-     *   });
-     *
-     *   $httpProvider.responseInterceptors.push('myHttpInterceptor');
-     *
-     *
-     *   // register the interceptor via an anonymous factory
-     *   $httpProvider.responseInterceptors.push(function($q, dependency1, dependency2) {
-     *     return function(promise) {
-     *       // same as above
-     *     }
-     *   });
-     * 
- * - * - * # Security Considerations - * - * When designing web applications, consider security threats from: - * - * - {@link http://haacked.com/archive/2008/11/20/anatomy-of-a-subtle-json-vulnerability.aspx - * JSON vulnerability} - * - {@link http://en.wikipedia.org/wiki/Cross-site_request_forgery XSRF} - * - * Both server and the client must cooperate in order to eliminate these threats. Angular comes - * pre-configured with strategies that address these issues, but for this to work backend server - * cooperation is required. - * - * ## JSON Vulnerability Protection - * - * A {@link http://haacked.com/archive/2008/11/20/anatomy-of-a-subtle-json-vulnerability.aspx - * JSON vulnerability} allows third party website to turn your JSON resource URL into - * {@link http://en.wikipedia.org/wiki/JSONP JSONP} request under some conditions. To - * counter this your server can prefix all JSON requests with following string `")]}',\n"`. - * Angular will automatically strip the prefix before processing it as JSON. - * - * For example if your server needs to return: - *
-     * ['one','two']
-     * 
- * - * which is vulnerable to attack, your server can return: - *
-     * )]}',
-     * ['one','two']
-     * 
- * - * Angular will strip the prefix, before processing the JSON. - * - * - * ## Cross Site Request Forgery (XSRF) Protection - * - * {@link http://en.wikipedia.org/wiki/Cross-site_request_forgery XSRF} is a technique by which - * an unauthorized site can gain your user's private data. Angular provides a mechanism - * to counter XSRF. When performing XHR requests, the $http service reads a token from a cookie - * (by default, `XSRF-TOKEN`) and sets it as an HTTP header (`X-XSRF-TOKEN`). Since only - * JavaScript that runs on your domain could read the cookie, your server can be assured that - * the XHR came from JavaScript running on your domain. The header will not be set for - * cross-domain requests. - * - * To take advantage of this, your server needs to set a token in a JavaScript readable session - * cookie called `XSRF-TOKEN` on the first HTTP GET request. On subsequent XHR requests the - * server can verify that the cookie matches `X-XSRF-TOKEN` HTTP header, and therefore be sure - * that only JavaScript running on your domain could have sent the request. The token must be - * unique for each user and must be verifiable by the server (to prevent the JavaScript from - * making up its own tokens). We recommend that the token is a digest of your site's - * authentication cookie with a {@link https://en.wikipedia.org/wiki/Salt_(cryptography) salt} - * for added security. - * - * The name of the headers can be specified using the xsrfHeaderName and xsrfCookieName - * properties of either $httpProvider.defaults, or the per-request config object. - * - * - * @param {object} config Object describing the request to be made and how it should be - * processed. The object has following properties: - * - * - **method** – `{string}` – HTTP method (e.g. 'GET', 'POST', etc) - * - **url** – `{string}` – Absolute or relative URL of the resource that is being requested. - * - **params** – `{Object.}` – Map of strings or objects which will be turned - * to `?key1=value1&key2=value2` after the url. If the value is not a string, it will be - * JSONified. - * - **data** – `{string|Object}` – Data to be sent as the request message data. - * - **headers** – `{Object}` – Map of strings or functions which return strings representing - * HTTP headers to send to the server. If the return value of a function is null, the - * header will not be sent. - * - **xsrfHeaderName** – `{string}` – Name of HTTP header to populate with the XSRF token. - * - **xsrfCookieName** – `{string}` – Name of cookie containing the XSRF token. - * - **transformRequest** – - * `{function(data, headersGetter)|Array.}` – - * transform function or an array of such functions. The transform function takes the http - * request body and headers and returns its transformed (typically serialized) version. - * - **transformResponse** – - * `{function(data, headersGetter)|Array.}` – - * transform function or an array of such functions. The transform function takes the http - * response body and headers and returns its transformed (typically deserialized) version. - * - **cache** – `{boolean|Cache}` – If true, a default $http cache will be used to cache the - * GET request, otherwise if a cache instance built with - * {@link ng.$cacheFactory $cacheFactory}, this cache will be used for - * caching. - * - **timeout** – `{number|Promise}` – timeout in milliseconds, or {@link ng.$q promise} - * that should abort the request when resolved. - * - **withCredentials** - `{boolean}` - whether to to set the `withCredentials` flag on the - * XHR object. See {@link https://developer.mozilla.org/en/http_access_control#section_5 - * requests with credentials} for more information. - * - **responseType** - `{string}` - see {@link - * https://developer.mozilla.org/en-US/docs/DOM/XMLHttpRequest#responseType requestType}. - * - * @returns {HttpPromise} Returns a {@link ng.$q promise} object with the - * standard `then` method and two http specific methods: `success` and `error`. The `then` - * method takes two arguments a success and an error callback which will be called with a - * response object. The `success` and `error` methods take a single argument - a function that - * will be called when the request succeeds or fails respectively. The arguments passed into - * these functions are destructured representation of the response object passed into the - * `then` method. The response object has these properties: - * - * - **data** – `{string|Object}` – The response body transformed with the transform - * functions. - * - **status** – `{number}` – HTTP status code of the response. - * - **headers** – `{function([headerName])}` – Header getter function. - * - **config** – `{Object}` – The configuration object that was used to generate the request. - * - * @property {Array.} pendingRequests Array of config objects for currently pending - * requests. This is primarily meant to be used for debugging purposes. - * - * - * @example - - -
- - -
- - - -
http status code: {{status}}
-
http response data: {{data}}
-
-
- - function FetchCtrl($scope, $http, $templateCache) { - $scope.method = 'GET'; - $scope.url = 'http-hello.html'; - - $scope.fetch = function() { - $scope.code = null; - $scope.response = null; - - $http({method: $scope.method, url: $scope.url, cache: $templateCache}). - success(function(data, status) { - $scope.status = status; - $scope.data = data; - }). - error(function(data, status) { - $scope.data = data || "Request failed"; - $scope.status = status; - }); - }; - - $scope.updateModel = function(method, url) { - $scope.method = method; - $scope.url = url; - }; - } - - - Hello, $http! - - - it('should make an xhr GET request', function() { - element(':button:contains("Sample GET")').click(); - element(':button:contains("fetch")').click(); - expect(binding('status')).toBe('200'); - expect(binding('data')).toMatch(/Hello, \$http!/); - }); - - it('should make a JSONP request to angularjs.org', function() { - element(':button:contains("Sample JSONP")').click(); - element(':button:contains("fetch")').click(); - expect(binding('status')).toBe('200'); - expect(binding('data')).toMatch(/Super Hero!/); - }); - - it('should make JSONP request to invalid URL and invoke the error handler', - function() { - element(':button:contains("Invalid JSONP")').click(); - element(':button:contains("fetch")').click(); - expect(binding('status')).toBe('0'); - expect(binding('data')).toBe('Request failed'); - }); - -
- */ - function $http(requestConfig) { - var config = { - transformRequest: defaults.transformRequest, - transformResponse: defaults.transformResponse - }; - var headers = mergeHeaders(requestConfig); - - extend(config, requestConfig); - config.headers = headers; - config.method = uppercase(config.method); - - var xsrfValue = urlIsSameOrigin(config.url) - ? $browser.cookies()[config.xsrfCookieName || defaults.xsrfCookieName] - : undefined; - if (xsrfValue) { - headers[(config.xsrfHeaderName || defaults.xsrfHeaderName)] = xsrfValue; - } - - - var serverRequest = function(config) { - headers = config.headers; - var reqData = transformData(config.data, headersGetter(headers), config.transformRequest); - - // strip content-type if data is undefined - if (isUndefined(config.data)) { - forEach(headers, function(value, header) { - if (lowercase(header) === 'content-type') { - delete headers[header]; - } - }); - } - - if (isUndefined(config.withCredentials) && !isUndefined(defaults.withCredentials)) { - config.withCredentials = defaults.withCredentials; - } - - // send request - return sendReq(config, reqData, headers).then(transformResponse, transformResponse); - }; - - var chain = [serverRequest, undefined]; - var promise = $q.when(config); - - // apply interceptors - forEach(reversedInterceptors, function(interceptor) { - if (interceptor.request || interceptor.requestError) { - chain.unshift(interceptor.request, interceptor.requestError); - } - if (interceptor.response || interceptor.responseError) { - chain.push(interceptor.response, interceptor.responseError); - } - }); - - while(chain.length) { - var thenFn = chain.shift(); - var rejectFn = chain.shift(); - - promise = promise.then(thenFn, rejectFn); - } - - promise.success = function(fn) { - promise.then(function(response) { - fn(response.data, response.status, response.headers, config); - }); - return promise; - }; - - promise.error = function(fn) { - promise.then(null, function(response) { - fn(response.data, response.status, response.headers, config); - }); - return promise; - }; - - return promise; - - function transformResponse(response) { - // make a copy since the response must be cacheable - var resp = extend({}, response, { - data: transformData(response.data, response.headers, config.transformResponse) - }); - return (isSuccess(response.status)) - ? resp - : $q.reject(resp); - } - - function mergeHeaders(config) { - var defHeaders = defaults.headers, - reqHeaders = extend({}, config.headers), - defHeaderName, lowercaseDefHeaderName, reqHeaderName; - - defHeaders = extend({}, defHeaders.common, defHeaders[lowercase(config.method)]); - - // execute if header value is function - execHeaders(defHeaders); - execHeaders(reqHeaders); - - // using for-in instead of forEach to avoid unecessary iteration after header has been found - defaultHeadersIteration: - for (defHeaderName in defHeaders) { - lowercaseDefHeaderName = lowercase(defHeaderName); - - for (reqHeaderName in reqHeaders) { - if (lowercase(reqHeaderName) === lowercaseDefHeaderName) { - continue defaultHeadersIteration; - } - } - - reqHeaders[defHeaderName] = defHeaders[defHeaderName]; - } - - return reqHeaders; - - function execHeaders(headers) { - var headerContent; - - forEach(headers, function(headerFn, header) { - if (isFunction(headerFn)) { - headerContent = headerFn(); - if (headerContent != null) { - headers[header] = headerContent; - } else { - delete headers[header]; - } - } - }); - } - } - } - - $http.pendingRequests = []; - - /** - * @ngdoc method - * @name ng.$http#get - * @methodOf ng.$http - * - * @description - * Shortcut method to perform `GET` request. - * - * @param {string} url Relative or absolute URL specifying the destination of the request - * @param {Object=} config Optional configuration object - * @returns {HttpPromise} Future object - */ - - /** - * @ngdoc method - * @name ng.$http#delete - * @methodOf ng.$http - * - * @description - * Shortcut method to perform `DELETE` request. - * - * @param {string} url Relative or absolute URL specifying the destination of the request - * @param {Object=} config Optional configuration object - * @returns {HttpPromise} Future object - */ - - /** - * @ngdoc method - * @name ng.$http#head - * @methodOf ng.$http - * - * @description - * Shortcut method to perform `HEAD` request. - * - * @param {string} url Relative or absolute URL specifying the destination of the request - * @param {Object=} config Optional configuration object - * @returns {HttpPromise} Future object - */ - - /** - * @ngdoc method - * @name ng.$http#jsonp - * @methodOf ng.$http - * - * @description - * Shortcut method to perform `JSONP` request. - * - * @param {string} url Relative or absolute URL specifying the destination of the request. - * Should contain `JSON_CALLBACK` string. - * @param {Object=} config Optional configuration object - * @returns {HttpPromise} Future object - */ - createShortMethods('get', 'delete', 'head', 'jsonp'); - - /** - * @ngdoc method - * @name ng.$http#post - * @methodOf ng.$http - * - * @description - * Shortcut method to perform `POST` request. - * - * @param {string} url Relative or absolute URL specifying the destination of the request - * @param {*} data Request content - * @param {Object=} config Optional configuration object - * @returns {HttpPromise} Future object - */ - - /** - * @ngdoc method - * @name ng.$http#put - * @methodOf ng.$http - * - * @description - * Shortcut method to perform `PUT` request. - * - * @param {string} url Relative or absolute URL specifying the destination of the request - * @param {*} data Request content - * @param {Object=} config Optional configuration object - * @returns {HttpPromise} Future object - */ - createShortMethodsWithData('post', 'put'); - - /** - * @ngdoc property - * @name ng.$http#defaults - * @propertyOf ng.$http - * - * @description - * Runtime equivalent of the `$httpProvider.defaults` property. Allows configuration of - * default headers, withCredentials as well as request and response transformations. - * - * See "Setting HTTP Headers" and "Transforming Requests and Responses" sections above. - */ - $http.defaults = defaults; - - - return $http; - - - function createShortMethods(names) { - forEach(arguments, function(name) { - $http[name] = function(url, config) { - return $http(extend(config || {}, { - method: name, - url: url - })); - }; - }); - } - - - function createShortMethodsWithData(name) { - forEach(arguments, function(name) { - $http[name] = function(url, data, config) { - return $http(extend(config || {}, { - method: name, - url: url, - data: data - })); - }; - }); - } - - - /** - * Makes the request. - * - * !!! ACCESSES CLOSURE VARS: - * $httpBackend, defaults, $log, $rootScope, defaultCache, $http.pendingRequests - */ - function sendReq(config, reqData, reqHeaders) { - var deferred = $q.defer(), - promise = deferred.promise, - cache, - cachedResp, - url = buildUrl(config.url, config.params); - - $http.pendingRequests.push(config); - promise.then(removePendingReq, removePendingReq); - - - if ((config.cache || defaults.cache) && config.cache !== false && config.method == 'GET') { - cache = isObject(config.cache) ? config.cache - : isObject(defaults.cache) ? defaults.cache - : defaultCache; - } - - if (cache) { - cachedResp = cache.get(url); - if (isDefined(cachedResp)) { - if (cachedResp.then) { - // cached request has already been sent, but there is no response yet - cachedResp.then(removePendingReq, removePendingReq); - return cachedResp; - } else { - // serving from cache - if (isArray(cachedResp)) { - resolvePromise(cachedResp[1], cachedResp[0], copy(cachedResp[2])); - } else { - resolvePromise(cachedResp, 200, {}); - } - } - } else { - // put the promise for the non-transformed response into cache as a placeholder - cache.put(url, promise); - } - } - - // if we won't have the response in cache, send the request to the backend - if (isUndefined(cachedResp)) { - $httpBackend(config.method, url, reqData, done, reqHeaders, config.timeout, - config.withCredentials, config.responseType); - } - - return promise; - - - /** - * Callback registered to $httpBackend(): - * - caches the response if desired - * - resolves the raw $http promise - * - calls $apply - */ - function done(status, response, headersString) { - if (cache) { - if (isSuccess(status)) { - cache.put(url, [status, response, parseHeaders(headersString)]); - } else { - // remove promise from the cache - cache.remove(url); - } - } - - resolvePromise(response, status, headersString); - if (!$rootScope.$$phase) $rootScope.$apply(); - } - - - /** - * Resolves the raw $http promise. - */ - function resolvePromise(response, status, headers) { - // normalize internal statuses to 0 - status = Math.max(status, 0); - - (isSuccess(status) ? deferred.resolve : deferred.reject)({ - data: response, - status: status, - headers: headersGetter(headers), - config: config - }); - } - - - function removePendingReq() { - var idx = indexOf($http.pendingRequests, config); - if (idx !== -1) $http.pendingRequests.splice(idx, 1); - } - } - - - function buildUrl(url, params) { - if (!params) return url; - var parts = []; - forEachSorted(params, function(value, key) { - if (value === null || isUndefined(value)) return; - if (!isArray(value)) value = [value]; - - forEach(value, function(v) { - if (isObject(v)) { - v = toJson(v); - } - parts.push(encodeUriQuery(key) + '=' + - encodeUriQuery(v)); - }); - }); - return url + ((url.indexOf('?') == -1) ? '?' : '&') + parts.join('&'); - } - - - }]; -} - -var XHR = window.XMLHttpRequest || function() { - /* global ActiveXObject */ - try { return new ActiveXObject("Msxml2.XMLHTTP.6.0"); } catch (e1) {} - try { return new ActiveXObject("Msxml2.XMLHTTP.3.0"); } catch (e2) {} - try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e3) {} - throw minErr('$httpBackend')('noxhr', "This browser does not support XMLHttpRequest."); -}; - - -/** - * @ngdoc object - * @name ng.$httpBackend - * @requires $browser - * @requires $window - * @requires $document - * - * @description - * HTTP backend used by the {@link ng.$http service} that delegates to - * XMLHttpRequest object or JSONP and deals with browser incompatibilities. - * - * You should never need to use this service directly, instead use the higher-level abstractions: - * {@link ng.$http $http} or {@link ngResource.$resource $resource}. - * - * During testing this implementation is swapped with {@link ngMock.$httpBackend mock - * $httpBackend} which can be trained with responses. - */ -function $HttpBackendProvider() { - this.$get = ['$browser', '$window', '$document', function($browser, $window, $document) { - return createHttpBackend($browser, XHR, $browser.defer, $window.angular.callbacks, $document[0]); - }]; -} - -function createHttpBackend($browser, XHR, $browserDefer, callbacks, rawDocument) { - var ABORTED = -1; - - // TODO(vojta): fix the signature - return function(method, url, post, callback, headers, timeout, withCredentials, responseType) { - var status; - $browser.$$incOutstandingRequestCount(); - url = url || $browser.url(); - - if (lowercase(method) == 'jsonp') { - var callbackId = '_' + (callbacks.counter++).toString(36); - callbacks[callbackId] = function(data) { - callbacks[callbackId].data = data; - }; - - var jsonpDone = jsonpReq(url.replace('JSON_CALLBACK', 'angular.callbacks.' + callbackId), - function() { - if (callbacks[callbackId].data) { - completeRequest(callback, 200, callbacks[callbackId].data); - } else { - completeRequest(callback, status || -2); - } - delete callbacks[callbackId]; - }); - } else { - var xhr = new XHR(); - xhr.open(method, url, true); - forEach(headers, function(value, key) { - if (isDefined(value)) { - xhr.setRequestHeader(key, value); - } - }); - - // In IE6 and 7, this might be called synchronously when xhr.send below is called and the - // response is in the cache. the promise api will ensure that to the app code the api is - // always async - xhr.onreadystatechange = function() { - if (xhr.readyState == 4) { - var responseHeaders = null, - response = null; - - if(status !== ABORTED) { - responseHeaders = xhr.getAllResponseHeaders(); - response = xhr.responseType ? xhr.response : xhr.responseText; - } - - // responseText is the old-school way of retrieving response (supported by IE8 & 9) - // response/responseType properties were introduced in XHR Level2 spec (supported by IE10) - completeRequest(callback, - status || xhr.status, - response, - responseHeaders); - } - }; - - if (withCredentials) { - xhr.withCredentials = true; - } - - if (responseType) { - xhr.responseType = responseType; - } - - xhr.send(post || null); - } - - if (timeout > 0) { - var timeoutId = $browserDefer(timeoutRequest, timeout); - } else if (timeout && timeout.then) { - timeout.then(timeoutRequest); - } - - - function timeoutRequest() { - status = ABORTED; - jsonpDone && jsonpDone(); - xhr && xhr.abort(); - } - - function completeRequest(callback, status, response, headersString) { - var protocol = urlResolve(url).protocol; - - // cancel timeout and subsequent timeout promise resolution - timeoutId && $browserDefer.cancel(timeoutId); - jsonpDone = xhr = null; - - // fix status code for file protocol (it's always 0) - status = (protocol == 'file' && status === 0) ? (response ? 200 : 404) : status; - - // normalize IE bug (http://bugs.jquery.com/ticket/1450) - status = status == 1223 ? 204 : status; - - callback(status, response, headersString); - $browser.$$completeOutstandingRequest(noop); - } - }; - - function jsonpReq(url, done) { - // we can't use jQuery/jqLite here because jQuery does crazy shit with script elements, e.g.: - // - fetches local scripts via XHR and evals them - // - adds and immediately removes script elements from the document - var script = rawDocument.createElement('script'), - doneWrapper = function() { - script.onreadystatechange = script.onload = script.onerror = null; - rawDocument.body.removeChild(script); - if (done) done(); - }; - - script.type = 'text/javascript'; - script.src = url; - - if (msie && msie <= 8) { - script.onreadystatechange = function() { - if (/loaded|complete/.test(script.readyState)) { - doneWrapper(); - } - }; - } else { - script.onload = script.onerror = function() { - doneWrapper(); - }; - } - - rawDocument.body.appendChild(script); - return doneWrapper; - } -} - -var $interpolateMinErr = minErr('$interpolate'); - -/** - * @ngdoc object - * @name ng.$interpolateProvider - * @function - * - * @description - * - * Used for configuring the interpolation markup. Defaults to `{{` and `}}`. - * - * @example - - - -
- //demo.label// -
-
- - it('should interpolate binding with custom symbols', function() { - expect(binding('demo.label')).toBe('This binding is brought you by // interpolation symbols.'); - }); - -
- */ -function $InterpolateProvider() { - var startSymbol = '{{'; - var endSymbol = '}}'; - - /** - * @ngdoc method - * @name ng.$interpolateProvider#startSymbol - * @methodOf ng.$interpolateProvider - * @description - * Symbol to denote start of expression in the interpolated string. Defaults to `{{`. - * - * @param {string=} value new value to set the starting symbol to. - * @returns {string|self} Returns the symbol when used as getter and self if used as setter. - */ - this.startSymbol = function(value){ - if (value) { - startSymbol = value; - return this; - } else { - return startSymbol; - } - }; - - /** - * @ngdoc method - * @name ng.$interpolateProvider#endSymbol - * @methodOf ng.$interpolateProvider - * @description - * Symbol to denote the end of expression in the interpolated string. Defaults to `}}`. - * - * @param {string=} value new value to set the ending symbol to. - * @returns {string|self} Returns the symbol when used as getter and self if used as setter. - */ - this.endSymbol = function(value){ - if (value) { - endSymbol = value; - return this; - } else { - return endSymbol; - } - }; - - - this.$get = ['$parse', '$exceptionHandler', '$sce', function($parse, $exceptionHandler, $sce) { - var startSymbolLength = startSymbol.length, - endSymbolLength = endSymbol.length; - - /** - * @ngdoc function - * @name ng.$interpolate - * @function - * - * @requires $parse - * @requires $sce - * - * @description - * - * Compiles a string with markup into an interpolation function. This service is used by the - * HTML {@link ng.$compile $compile} service for data binding. See - * {@link ng.$interpolateProvider $interpolateProvider} for configuring the - * interpolation markup. - * - * -
-         var $interpolate = ...; // injected
-         var exp = $interpolate('Hello {{name | uppercase}}!');
-         expect(exp({name:'Angular'}).toEqual('Hello ANGULAR!');
-       
- * - * - * @param {string} text The text with markup to interpolate. - * @param {boolean=} mustHaveExpression if set to true then the interpolation string must have - * embedded expression in order to return an interpolation function. Strings with no - * embedded expression will return null for the interpolation function. - * @param {string=} trustedContext when provided, the returned function passes the interpolated - * result through {@link ng.$sce#methods_getTrusted $sce.getTrusted(interpolatedResult, - * trustedContext)} before returning it. Refer to the {@link ng.$sce $sce} service that - * provides Strict Contextual Escaping for details. - * @returns {function(context)} an interpolation function which is used to compute the - * interpolated string. The function has these parameters: - * - * * `context`: an object against which any expressions embedded in the strings are evaluated - * against. - * - */ - function $interpolate(text, mustHaveExpression, trustedContext) { - var startIndex, - endIndex, - index = 0, - parts = [], - length = text.length, - hasInterpolation = false, - fn, - exp, - concat = []; - - while(index < length) { - if ( ((startIndex = text.indexOf(startSymbol, index)) != -1) && - ((endIndex = text.indexOf(endSymbol, startIndex + startSymbolLength)) != -1) ) { - (index != startIndex) && parts.push(text.substring(index, startIndex)); - parts.push(fn = $parse(exp = text.substring(startIndex + startSymbolLength, endIndex))); - fn.exp = exp; - index = endIndex + endSymbolLength; - hasInterpolation = true; - } else { - // we did not find anything, so we have to add the remainder to the parts array - (index != length) && parts.push(text.substring(index)); - index = length; - } - } - - if (!(length = parts.length)) { - // we added, nothing, must have been an empty string. - parts.push(''); - length = 1; - } - - // Concatenating expressions makes it hard to reason about whether some combination of - // concatenated values are unsafe to use and could easily lead to XSS. By requiring that a - // single expression be used for iframe[src], object[src], etc., we ensure that the value - // that's used is assigned or constructed by some JS code somewhere that is more testable or - // make it obvious that you bound the value to some user controlled value. This helps reduce - // the load when auditing for XSS issues. - if (trustedContext && parts.length > 1) { - throw $interpolateMinErr('noconcat', - "Error while interpolating: {0}\nStrict Contextual Escaping disallows " + - "interpolations that concatenate multiple expressions when a trusted value is " + - "required. See http://docs.angularjs.org/api/ng.$sce", text); - } - - if (!mustHaveExpression || hasInterpolation) { - concat.length = length; - fn = function(context) { - try { - for(var i = 0, ii = length, part; i - * **Note**: Intervals created by this service must be explicitly destroyed when you are finished - * with them. In particular they are not automatically destroyed when a controller's scope or a - * directive's element are destroyed. - * You should take this into consideration and make sure to always cancel the interval at the - * appropriate moment. See the example below for more details on how and when to do this. - * - * - * @param {function()} fn A function that should be called repeatedly. - * @param {number} delay Number of milliseconds between each function call. - * @param {number=} [count=0] Number of times to repeat. If not set, or 0, will repeat - * indefinitely. - * @param {boolean=} [invokeApply=true] If set to `false` skips model dirty checking, otherwise - * will invoke `fn` within the {@link ng.$rootScope.Scope#methods_$apply $apply} block. - * @returns {promise} A promise which will be notified on each iteration. - * - * @example - - - - -
-
- Date format:
- Current time is: -
- Blood 1 : {{blood_1}} - Blood 2 : {{blood_2}} - - - -
-
- -
-
- */ - function interval(fn, delay, count, invokeApply) { - var setInterval = $window.setInterval, - clearInterval = $window.clearInterval, - deferred = $q.defer(), - promise = deferred.promise, - iteration = 0, - skipApply = (isDefined(invokeApply) && !invokeApply); - - count = isDefined(count) ? count : 0, - - promise.then(null, null, fn); - - promise.$$intervalId = setInterval(function tick() { - deferred.notify(iteration++); - - if (count > 0 && iteration >= count) { - deferred.resolve(iteration); - clearInterval(promise.$$intervalId); - delete intervals[promise.$$intervalId]; - } - - if (!skipApply) $rootScope.$apply(); - - }, delay); - - intervals[promise.$$intervalId] = deferred; - - return promise; - } - - - /** - * @ngdoc function - * @name ng.$interval#cancel - * @methodOf ng.$interval - * - * @description - * Cancels a task associated with the `promise`. - * - * @param {number} promise Promise returned by the `$interval` function. - * @returns {boolean} Returns `true` if the task was successfully canceled. - */ - interval.cancel = function(promise) { - if (promise && promise.$$intervalId in intervals) { - intervals[promise.$$intervalId].reject('canceled'); - clearInterval(promise.$$intervalId); - delete intervals[promise.$$intervalId]; - return true; - } - return false; - }; - - return interval; - }]; -} - -/** - * @ngdoc object - * @name ng.$locale - * - * @description - * $locale service provides localization rules for various Angular components. As of right now the - * only public api is: - * - * * `id` – `{string}` – locale id formatted as `languageId-countryId` (e.g. `en-us`) - */ -function $LocaleProvider(){ - this.$get = function() { - return { - id: 'en-us', - - NUMBER_FORMATS: { - DECIMAL_SEP: '.', - GROUP_SEP: ',', - PATTERNS: [ - { // Decimal Pattern - minInt: 1, - minFrac: 0, - maxFrac: 3, - posPre: '', - posSuf: '', - negPre: '-', - negSuf: '', - gSize: 3, - lgSize: 3 - },{ //Currency Pattern - minInt: 1, - minFrac: 2, - maxFrac: 2, - posPre: '\u00A4', - posSuf: '', - negPre: '(\u00A4', - negSuf: ')', - gSize: 3, - lgSize: 3 - } - ], - CURRENCY_SYM: '$' - }, - - DATETIME_FORMATS: { - MONTH: - 'January,February,March,April,May,June,July,August,September,October,November,December' - .split(','), - SHORTMONTH: 'Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec'.split(','), - DAY: 'Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday'.split(','), - SHORTDAY: 'Sun,Mon,Tue,Wed,Thu,Fri,Sat'.split(','), - AMPMS: ['AM','PM'], - medium: 'MMM d, y h:mm:ss a', - short: 'M/d/yy h:mm a', - fullDate: 'EEEE, MMMM d, y', - longDate: 'MMMM d, y', - mediumDate: 'MMM d, y', - shortDate: 'M/d/yy', - mediumTime: 'h:mm:ss a', - shortTime: 'h:mm a' - }, - - pluralCat: function(num) { - if (num === 1) { - return 'one'; - } - return 'other'; - } - }; - }; -} - -var PATH_MATCH = /^([^\?#]*)(\?([^#]*))?(#(.*))?$/, - DEFAULT_PORTS = {'http': 80, 'https': 443, 'ftp': 21}; -var $locationMinErr = minErr('$location'); - - -/** - * Encode path using encodeUriSegment, ignoring forward slashes - * - * @param {string} path Path to encode - * @returns {string} - */ -function encodePath(path) { - var segments = path.split('/'), - i = segments.length; - - while (i--) { - segments[i] = encodeUriSegment(segments[i]); - } - - return segments.join('/'); -} - -function parseAbsoluteUrl(absoluteUrl, locationObj, appBase) { - var parsedUrl = urlResolve(absoluteUrl, appBase); - - locationObj.$$protocol = parsedUrl.protocol; - locationObj.$$host = parsedUrl.hostname; - locationObj.$$port = int(parsedUrl.port) || DEFAULT_PORTS[parsedUrl.protocol] || null; -} - - -function parseAppUrl(relativeUrl, locationObj, appBase) { - var prefixed = (relativeUrl.charAt(0) !== '/'); - if (prefixed) { - relativeUrl = '/' + relativeUrl; - } - var match = urlResolve(relativeUrl, appBase); - locationObj.$$path = decodeURIComponent(prefixed && match.pathname.charAt(0) === '/' ? - match.pathname.substring(1) : match.pathname); - locationObj.$$search = parseKeyValue(match.search); - locationObj.$$hash = decodeURIComponent(match.hash); - - // make sure path starts with '/'; - if (locationObj.$$path && locationObj.$$path.charAt(0) != '/') { - locationObj.$$path = '/' + locationObj.$$path; - } -} - - -/** - * - * @param {string} begin - * @param {string} whole - * @returns {string} returns text from whole after begin or undefined if it does not begin with - * expected string. - */ -function beginsWith(begin, whole) { - if (whole.indexOf(begin) === 0) { - return whole.substr(begin.length); - } -} - - -function stripHash(url) { - var index = url.indexOf('#'); - return index == -1 ? url : url.substr(0, index); -} - - -function stripFile(url) { - return url.substr(0, stripHash(url).lastIndexOf('/') + 1); -} - -/* return the server only (scheme://host:port) */ -function serverBase(url) { - return url.substring(0, url.indexOf('/', url.indexOf('//') + 2)); -} - - -/** - * LocationHtml5Url represents an url - * This object is exposed as $location service when HTML5 mode is enabled and supported - * - * @constructor - * @param {string} appBase application base URL - * @param {string} basePrefix url path prefix - */ -function LocationHtml5Url(appBase, basePrefix) { - this.$$html5 = true; - basePrefix = basePrefix || ''; - var appBaseNoFile = stripFile(appBase); - parseAbsoluteUrl(appBase, this, appBase); - - - /** - * Parse given html5 (regular) url string into properties - * @param {string} newAbsoluteUrl HTML5 url - * @private - */ - this.$$parse = function(url) { - var pathUrl = beginsWith(appBaseNoFile, url); - if (!isString(pathUrl)) { - throw $locationMinErr('ipthprfx', 'Invalid url "{0}", missing path prefix "{1}".', url, - appBaseNoFile); - } - - parseAppUrl(pathUrl, this, appBase); - - if (!this.$$path) { - this.$$path = '/'; - } - - this.$$compose(); - }; - - /** - * Compose url and update `absUrl` property - * @private - */ - this.$$compose = function() { - var search = toKeyValue(this.$$search), - hash = this.$$hash ? '#' + encodeUriSegment(this.$$hash) : ''; - - this.$$url = encodePath(this.$$path) + (search ? '?' + search : '') + hash; - this.$$absUrl = appBaseNoFile + this.$$url.substr(1); // first char is always '/' - }; - - this.$$rewrite = function(url) { - var appUrl, prevAppUrl; - - if ( (appUrl = beginsWith(appBase, url)) !== undefined ) { - prevAppUrl = appUrl; - if ( (appUrl = beginsWith(basePrefix, appUrl)) !== undefined ) { - return appBaseNoFile + (beginsWith('/', appUrl) || appUrl); - } else { - return appBase + prevAppUrl; - } - } else if ( (appUrl = beginsWith(appBaseNoFile, url)) !== undefined ) { - return appBaseNoFile + appUrl; - } else if (appBaseNoFile == url + '/') { - return appBaseNoFile; - } - }; -} - - -/** - * LocationHashbangUrl represents url - * This object is exposed as $location service when developer doesn't opt into html5 mode. - * It also serves as the base class for html5 mode fallback on legacy browsers. - * - * @constructor - * @param {string} appBase application base URL - * @param {string} hashPrefix hashbang prefix - */ -function LocationHashbangUrl(appBase, hashPrefix) { - var appBaseNoFile = stripFile(appBase); - - parseAbsoluteUrl(appBase, this, appBase); - - - /** - * Parse given hashbang url into properties - * @param {string} url Hashbang url - * @private - */ - this.$$parse = function(url) { - var withoutBaseUrl = beginsWith(appBase, url) || beginsWith(appBaseNoFile, url); - var withoutHashUrl = withoutBaseUrl.charAt(0) == '#' - ? beginsWith(hashPrefix, withoutBaseUrl) - : (this.$$html5) - ? withoutBaseUrl - : ''; - - if (!isString(withoutHashUrl)) { - throw $locationMinErr('ihshprfx', 'Invalid url "{0}", missing hash prefix "{1}".', url, - hashPrefix); - } - parseAppUrl(withoutHashUrl, this, appBase); - - this.$$path = removeWindowsDriveName(this.$$path, withoutHashUrl, appBase); - - this.$$compose(); - - /* - * In Windows, on an anchor node on documents loaded from - * the filesystem, the browser will return a pathname - * prefixed with the drive name ('/C:/path') when a - * pathname without a drive is set: - * * a.setAttribute('href', '/foo') - * * a.pathname === '/C:/foo' //true - * - * Inside of Angular, we're always using pathnames that - * do not include drive names for routing. - */ - function removeWindowsDriveName (path, url, base) { - /* - Matches paths for file protocol on windows, - such as /C:/foo/bar, and captures only /foo/bar. - */ - var windowsFilePathExp = /^\/?.*?:(\/.*)/; - - var firstPathSegmentMatch; - - //Get the relative path from the input URL. - if (url.indexOf(base) === 0) { - url = url.replace(base, ''); - } - - /* - * The input URL intentionally contains a - * first path segment that ends with a colon. - */ - if (windowsFilePathExp.exec(url)) { - return path; - } - - firstPathSegmentMatch = windowsFilePathExp.exec(path); - return firstPathSegmentMatch ? firstPathSegmentMatch[1] : path; - } - }; - - /** - * Compose hashbang url and update `absUrl` property - * @private - */ - this.$$compose = function() { - var search = toKeyValue(this.$$search), - hash = this.$$hash ? '#' + encodeUriSegment(this.$$hash) : ''; - - this.$$url = encodePath(this.$$path) + (search ? '?' + search : '') + hash; - this.$$absUrl = appBase + (this.$$url ? hashPrefix + this.$$url : ''); - }; - - this.$$rewrite = function(url) { - if(stripHash(appBase) == stripHash(url)) { - return url; - } - }; -} - - -/** - * LocationHashbangUrl represents url - * This object is exposed as $location service when html5 history api is enabled but the browser - * does not support it. - * - * @constructor - * @param {string} appBase application base URL - * @param {string} hashPrefix hashbang prefix - */ -function LocationHashbangInHtml5Url(appBase, hashPrefix) { - this.$$html5 = true; - LocationHashbangUrl.apply(this, arguments); - - var appBaseNoFile = stripFile(appBase); - - this.$$rewrite = function(url) { - var appUrl; - - if ( appBase == stripHash(url) ) { - return url; - } else if ( (appUrl = beginsWith(appBaseNoFile, url)) ) { - return appBase + hashPrefix + appUrl; - } else if ( appBaseNoFile === url + '/') { - return appBaseNoFile; - } - }; -} - - -LocationHashbangInHtml5Url.prototype = - LocationHashbangUrl.prototype = - LocationHtml5Url.prototype = { - - /** - * Are we in html5 mode? - * @private - */ - $$html5: false, - - /** - * Has any change been replacing ? - * @private - */ - $$replace: false, - - /** - * @ngdoc method - * @name ng.$location#absUrl - * @methodOf ng.$location - * - * @description - * This method is getter only. - * - * Return full url representation with all segments encoded according to rules specified in - * {@link http://www.ietf.org/rfc/rfc3986.txt RFC 3986}. - * - * @return {string} full url - */ - absUrl: locationGetter('$$absUrl'), - - /** - * @ngdoc method - * @name ng.$location#url - * @methodOf ng.$location - * - * @description - * This method is getter / setter. - * - * Return url (e.g. `/path?a=b#hash`) when called without any parameter. - * - * Change path, search and hash, when called with parameter and return `$location`. - * - * @param {string=} url New url without base prefix (e.g. `/path?a=b#hash`) - * @param {string=} replace The path that will be changed - * @return {string} url - */ - url: function(url, replace) { - if (isUndefined(url)) - return this.$$url; - - var match = PATH_MATCH.exec(url); - if (match[1]) this.path(decodeURIComponent(match[1])); - if (match[2] || match[1]) this.search(match[3] || ''); - this.hash(match[5] || '', replace); - - return this; - }, - - /** - * @ngdoc method - * @name ng.$location#protocol - * @methodOf ng.$location - * - * @description - * This method is getter only. - * - * Return protocol of current url. - * - * @return {string} protocol of current url - */ - protocol: locationGetter('$$protocol'), - - /** - * @ngdoc method - * @name ng.$location#host - * @methodOf ng.$location - * - * @description - * This method is getter only. - * - * Return host of current url. - * - * @return {string} host of current url. - */ - host: locationGetter('$$host'), - - /** - * @ngdoc method - * @name ng.$location#port - * @methodOf ng.$location - * - * @description - * This method is getter only. - * - * Return port of current url. - * - * @return {Number} port - */ - port: locationGetter('$$port'), - - /** - * @ngdoc method - * @name ng.$location#path - * @methodOf ng.$location - * - * @description - * This method is getter / setter. - * - * Return path of current url when called without any parameter. - * - * Change path when called with parameter and return `$location`. - * - * Note: Path should always begin with forward slash (/), this method will add the forward slash - * if it is missing. - * - * @param {string=} path New path - * @return {string} path - */ - path: locationGetterSetter('$$path', function(path) { - return path.charAt(0) == '/' ? path : '/' + path; - }), - - /** - * @ngdoc method - * @name ng.$location#search - * @methodOf ng.$location - * - * @description - * This method is getter / setter. - * - * Return search part (as object) of current url when called without any parameter. - * - * Change search part when called with parameter and return `$location`. - * - * @param {string|Object.|Object.>} search New search params - string or - * hash object. Hash object may contain an array of values, which will be decoded as duplicates in - * the url. - * - * @param {(string|Array)=} paramValue If `search` is a string, then `paramValue` will override only a - * single search parameter. If `paramValue` is an array, it will set the parameter as a - * comma-separated value. If `paramValue` is `null`, the parameter will be deleted. - * - * @return {string} search - */ - search: function(search, paramValue) { - switch (arguments.length) { - case 0: - return this.$$search; - case 1: - if (isString(search)) { - this.$$search = parseKeyValue(search); - } else if (isObject(search)) { - this.$$search = search; - } else { - throw $locationMinErr('isrcharg', - 'The first argument of the `$location#search()` call must be a string or an object.'); - } - break; - default: - if (isUndefined(paramValue) || paramValue === null) { - delete this.$$search[search]; - } else { - this.$$search[search] = paramValue; - } - } - - this.$$compose(); - return this; - }, - - /** - * @ngdoc method - * @name ng.$location#hash - * @methodOf ng.$location - * - * @description - * This method is getter / setter. - * - * Return hash fragment when called without any parameter. - * - * Change hash fragment when called with parameter and return `$location`. - * - * @param {string=} hash New hash fragment - * @return {string} hash - */ - hash: locationGetterSetter('$$hash', identity), - - /** - * @ngdoc method - * @name ng.$location#replace - * @methodOf ng.$location - * - * @description - * If called, all changes to $location during current `$digest` will be replacing current history - * record, instead of adding new one. - */ - replace: function() { - this.$$replace = true; - return this; - } -}; - -function locationGetter(property) { - return function() { - return this[property]; - }; -} - - -function locationGetterSetter(property, preprocess) { - return function(value) { - if (isUndefined(value)) - return this[property]; - - this[property] = preprocess(value); - this.$$compose(); - - return this; - }; -} - - -/** - * @ngdoc object - * @name ng.$location - * - * @requires $browser - * @requires $sniffer - * @requires $rootElement - * - * @description - * The $location service parses the URL in the browser address bar (based on the - * {@link https://developer.mozilla.org/en/window.location window.location}) and makes the URL - * available to your application. Changes to the URL in the address bar are reflected into - * $location service and changes to $location are reflected into the browser address bar. - * - * **The $location service:** - * - * - Exposes the current URL in the browser address bar, so you can - * - Watch and observe the URL. - * - Change the URL. - * - Synchronizes the URL with the browser when the user - * - Changes the address bar. - * - Clicks the back or forward button (or clicks a History link). - * - Clicks on a link. - * - Represents the URL object as a set of methods (protocol, host, port, path, search, hash). - * - * For more information see {@link guide/dev_guide.services.$location Developer Guide: Angular - * Services: Using $location} - */ - -/** - * @ngdoc object - * @name ng.$locationProvider - * @description - * Use the `$locationProvider` to configure how the application deep linking paths are stored. - */ -function $LocationProvider(){ - var hashPrefix = '', - html5Mode = false; - - /** - * @ngdoc property - * @name ng.$locationProvider#hashPrefix - * @methodOf ng.$locationProvider - * @description - * @param {string=} prefix Prefix for hash part (containing path and search) - * @returns {*} current value if used as getter or itself (chaining) if used as setter - */ - this.hashPrefix = function(prefix) { - if (isDefined(prefix)) { - hashPrefix = prefix; - return this; - } else { - return hashPrefix; - } - }; - - /** - * @ngdoc property - * @name ng.$locationProvider#html5Mode - * @methodOf ng.$locationProvider - * @description - * @param {boolean=} mode Use HTML5 strategy if available. - * @returns {*} current value if used as getter or itself (chaining) if used as setter - */ - this.html5Mode = function(mode) { - if (isDefined(mode)) { - html5Mode = mode; - return this; - } else { - return html5Mode; - } - }; - - /** - * @ngdoc event - * @name ng.$location#$locationChangeStart - * @eventOf ng.$location - * @eventType broadcast on root scope - * @description - * Broadcasted before a URL will change. This change can be prevented by calling - * `preventDefault` method of the event. See {@link ng.$rootScope.Scope#$on} for more - * details about event object. Upon successful change - * {@link ng.$location#$locationChangeSuccess $locationChangeSuccess} is fired. - * - * @param {Object} angularEvent Synthetic event object. - * @param {string} newUrl New URL - * @param {string=} oldUrl URL that was before it was changed. - */ - - /** - * @ngdoc event - * @name ng.$location#$locationChangeSuccess - * @eventOf ng.$location - * @eventType broadcast on root scope - * @description - * Broadcasted after a URL was changed. - * - * @param {Object} angularEvent Synthetic event object. - * @param {string} newUrl New URL - * @param {string=} oldUrl URL that was before it was changed. - */ - - this.$get = ['$rootScope', '$browser', '$sniffer', '$rootElement', - function( $rootScope, $browser, $sniffer, $rootElement) { - var $location, - LocationMode, - baseHref = $browser.baseHref(), // if base[href] is undefined, it defaults to '' - initialUrl = $browser.url(), - appBase; - - if (html5Mode) { - appBase = serverBase(initialUrl) + (baseHref || '/'); - LocationMode = $sniffer.history ? LocationHtml5Url : LocationHashbangInHtml5Url; - } else { - appBase = stripHash(initialUrl); - LocationMode = LocationHashbangUrl; - } - $location = new LocationMode(appBase, '#' + hashPrefix); - $location.$$parse($location.$$rewrite(initialUrl)); - - $rootElement.on('click', function(event) { - // TODO(vojta): rewrite link when opening in new tab/window (in legacy browser) - // currently we open nice url link and redirect then - - if (event.ctrlKey || event.metaKey || event.which == 2) return; - - var elm = jqLite(event.target); - - // traverse the DOM up to find first A tag - while (lowercase(elm[0].nodeName) !== 'a') { - // ignore rewriting if no A tag (reached root element, or no parent - removed from document) - if (elm[0] === $rootElement[0] || !(elm = elm.parent())[0]) return; - } - - var absHref = elm.prop('href'); - - if (isObject(absHref) && absHref.toString() === '[object SVGAnimatedString]') { - // SVGAnimatedString.animVal should be identical to SVGAnimatedString.baseVal, unless during - // an animation. - absHref = urlResolve(absHref.animVal).href; - } - - var rewrittenUrl = $location.$$rewrite(absHref); - - if (absHref && !elm.attr('target') && rewrittenUrl && !event.isDefaultPrevented()) { - event.preventDefault(); - if (rewrittenUrl != $browser.url()) { - // update location manually - $location.$$parse(rewrittenUrl); - $rootScope.$apply(); - // hack to work around FF6 bug 684208 when scenario runner clicks on links - window.angular['ff-684208-preventDefault'] = true; - } - } - }); - - - // rewrite hashbang url <> html5 url - if ($location.absUrl() != initialUrl) { - $browser.url($location.absUrl(), true); - } - - // update $location when $browser url changes - $browser.onUrlChange(function(newUrl) { - if ($location.absUrl() != newUrl) { - if ($rootScope.$broadcast('$locationChangeStart', newUrl, - $location.absUrl()).defaultPrevented) { - $browser.url($location.absUrl()); - return; - } - $rootScope.$evalAsync(function() { - var oldUrl = $location.absUrl(); - - $location.$$parse(newUrl); - afterLocationChange(oldUrl); - }); - if (!$rootScope.$$phase) $rootScope.$digest(); - } - }); - - // update browser - var changeCounter = 0; - $rootScope.$watch(function $locationWatch() { - var oldUrl = $browser.url(); - var currentReplace = $location.$$replace; - - if (!changeCounter || oldUrl != $location.absUrl()) { - changeCounter++; - $rootScope.$evalAsync(function() { - if ($rootScope.$broadcast('$locationChangeStart', $location.absUrl(), oldUrl). - defaultPrevented) { - $location.$$parse(oldUrl); - } else { - $browser.url($location.absUrl(), currentReplace); - afterLocationChange(oldUrl); - } - }); - } - $location.$$replace = false; - - return changeCounter; - }); - - return $location; - - function afterLocationChange(oldUrl) { - $rootScope.$broadcast('$locationChangeSuccess', $location.absUrl(), oldUrl); - } -}]; -} - -/** - * @ngdoc object - * @name ng.$log - * @requires $window - * - * @description - * Simple service for logging. Default implementation safely writes the message - * into the browser's console (if present). - * - * The main purpose of this service is to simplify debugging and troubleshooting. - * - * The default is to log `debug` messages. You can use - * {@link ng.$logProvider ng.$logProvider#debugEnabled} to change this. - * - * @example - - - function LogCtrl($scope, $log) { - $scope.$log = $log; - $scope.message = 'Hello World!'; - } - - -
-

Reload this page with open console, enter text and hit the log button...

- Message: - - - - - -
-
-
- */ - -/** - * @ngdoc object - * @name ng.$logProvider - * @description - * Use the `$logProvider` to configure how the application logs messages - */ -function $LogProvider(){ - var debug = true, - self = this; - - /** - * @ngdoc property - * @name ng.$logProvider#debugEnabled - * @methodOf ng.$logProvider - * @description - * @param {string=} flag enable or disable debug level messages - * @returns {*} current value if used as getter or itself (chaining) if used as setter - */ - this.debugEnabled = function(flag) { - if (isDefined(flag)) { - debug = flag; - return this; - } else { - return debug; - } - }; - - this.$get = ['$window', function($window){ - return { - /** - * @ngdoc method - * @name ng.$log#log - * @methodOf ng.$log - * - * @description - * Write a log message - */ - log: consoleLog('log'), - - /** - * @ngdoc method - * @name ng.$log#info - * @methodOf ng.$log - * - * @description - * Write an information message - */ - info: consoleLog('info'), - - /** - * @ngdoc method - * @name ng.$log#warn - * @methodOf ng.$log - * - * @description - * Write a warning message - */ - warn: consoleLog('warn'), - - /** - * @ngdoc method - * @name ng.$log#error - * @methodOf ng.$log - * - * @description - * Write an error message - */ - error: consoleLog('error'), - - /** - * @ngdoc method - * @name ng.$log#debug - * @methodOf ng.$log - * - * @description - * Write a debug message - */ - debug: (function () { - var fn = consoleLog('debug'); - - return function() { - if (debug) { - fn.apply(self, arguments); - } - }; - }()) - }; - - function formatError(arg) { - if (arg instanceof Error) { - if (arg.stack) { - arg = (arg.message && arg.stack.indexOf(arg.message) === -1) - ? 'Error: ' + arg.message + '\n' + arg.stack - : arg.stack; - } else if (arg.sourceURL) { - arg = arg.message + '\n' + arg.sourceURL + ':' + arg.line; - } - } - return arg; - } - - function consoleLog(type) { - var console = $window.console || {}, - logFn = console[type] || console.log || noop, - hasApply = false; - - // Note: reading logFn.apply throws an error in IE11 in IE8 document mode. - // The reason behind this is that console.log has type "object" in IE8... - try { - hasApply = !! logFn.apply; - } catch (e) {} - - if (hasApply) { - return function() { - var args = []; - forEach(arguments, function(arg) { - args.push(formatError(arg)); - }); - return logFn.apply(console, args); - }; - } - - // we are IE which either doesn't have window.console => this is noop and we do nothing, - // or we are IE where console.log doesn't have apply so we log at least first 2 args - return function(arg1, arg2) { - logFn(arg1, arg2 == null ? '' : arg2); - }; - } - }]; -} - -var $parseMinErr = minErr('$parse'); -var promiseWarningCache = {}; -var promiseWarning; - -// Sandboxing Angular Expressions -// ------------------------------ -// Angular expressions are generally considered safe because these expressions only have direct -// access to $scope and locals. However, one can obtain the ability to execute arbitrary JS code by -// obtaining a reference to native JS functions such as the Function constructor. -// -// As an example, consider the following Angular expression: -// -// {}.toString.constructor(alert("evil JS code")) -// -// We want to prevent this type of access. For the sake of performance, during the lexing phase we -// disallow any "dotted" access to any member named "constructor". -// -// For reflective calls (a[b]) we check that the value of the lookup is not the Function constructor -// while evaluating the expression, which is a stronger but more expensive test. Since reflective -// calls are expensive anyway, this is not such a big deal compared to static dereferencing. -// -// This sandboxing technique is not perfect and doesn't aim to be. The goal is to prevent exploits -// against the expression language, but not to prevent exploits that were enabled by exposing -// sensitive JavaScript or browser apis on Scope. Exposing such objects on a Scope is never a good -// practice and therefore we are not even trying to protect against interaction with an object -// explicitly exposed in this way. -// -// A developer could foil the name check by aliasing the Function constructor under a different -// name on the scope. -// -// In general, it is not possible to access a Window object from an angular expression unless a -// window or some DOM object that has a reference to window is published onto a Scope. - -function ensureSafeMemberName(name, fullExpression) { - if (name === "constructor") { - throw $parseMinErr('isecfld', - 'Referencing "constructor" field in Angular expressions is disallowed! Expression: {0}', - fullExpression); - } - return name; -} - -function ensureSafeObject(obj, fullExpression) { - // nifty check if obj is Function that is fast and works across iframes and other contexts - if (obj) { - if (obj.constructor === obj) { - throw $parseMinErr('isecfn', - 'Referencing Function in Angular expressions is disallowed! Expression: {0}', - fullExpression); - } else if (// isWindow(obj) - obj.document && obj.location && obj.alert && obj.setInterval) { - throw $parseMinErr('isecwindow', - 'Referencing the Window in Angular expressions is disallowed! Expression: {0}', - fullExpression); - } else if (// isElement(obj) - obj.children && (obj.nodeName || (obj.on && obj.find))) { - throw $parseMinErr('isecdom', - 'Referencing DOM nodes in Angular expressions is disallowed! Expression: {0}', - fullExpression); - } - } - return obj; -} - -var OPERATORS = { - /* jshint bitwise : false */ - 'null':function(){return null;}, - 'true':function(){return true;}, - 'false':function(){return false;}, - undefined:noop, - '+':function(self, locals, a,b){ - a=a(self, locals); b=b(self, locals); - if (isDefined(a)) { - if (isDefined(b)) { - return a + b; - } - return a; - } - return isDefined(b)?b:undefined;}, - '-':function(self, locals, a,b){ - a=a(self, locals); b=b(self, locals); - return (isDefined(a)?a:0)-(isDefined(b)?b:0); - }, - '*':function(self, locals, a,b){return a(self, locals)*b(self, locals);}, - '/':function(self, locals, a,b){return a(self, locals)/b(self, locals);}, - '%':function(self, locals, a,b){return a(self, locals)%b(self, locals);}, - '^':function(self, locals, a,b){return a(self, locals)^b(self, locals);}, - '=':noop, - '===':function(self, locals, a, b){return a(self, locals)===b(self, locals);}, - '!==':function(self, locals, a, b){return a(self, locals)!==b(self, locals);}, - '==':function(self, locals, a,b){return a(self, locals)==b(self, locals);}, - '!=':function(self, locals, a,b){return a(self, locals)!=b(self, locals);}, - '<':function(self, locals, a,b){return a(self, locals)':function(self, locals, a,b){return a(self, locals)>b(self, locals);}, - '<=':function(self, locals, a,b){return a(self, locals)<=b(self, locals);}, - '>=':function(self, locals, a,b){return a(self, locals)>=b(self, locals);}, - '&&':function(self, locals, a,b){return a(self, locals)&&b(self, locals);}, - '||':function(self, locals, a,b){return a(self, locals)||b(self, locals);}, - '&':function(self, locals, a,b){return a(self, locals)&b(self, locals);}, -// '|':function(self, locals, a,b){return a|b;}, - '|':function(self, locals, a,b){return b(self, locals)(self, locals, a(self, locals));}, - '!':function(self, locals, a){return !a(self, locals);} -}; -/* jshint bitwise: true */ -var ESCAPE = {"n":"\n", "f":"\f", "r":"\r", "t":"\t", "v":"\v", "'":"'", '"':'"'}; - - -///////////////////////////////////////// - - -/** - * @constructor - */ -var Lexer = function (options) { - this.options = options; -}; - -Lexer.prototype = { - constructor: Lexer, - - lex: function (text) { - this.text = text; - - this.index = 0; - this.ch = undefined; - this.lastCh = ':'; // can start regexp - - this.tokens = []; - - var token; - var json = []; - - while (this.index < this.text.length) { - this.ch = this.text.charAt(this.index); - if (this.is('"\'')) { - this.readString(this.ch); - } else if (this.isNumber(this.ch) || this.is('.') && this.isNumber(this.peek())) { - this.readNumber(); - } else if (this.isIdent(this.ch)) { - this.readIdent(); - // identifiers can only be if the preceding char was a { or , - if (this.was('{,') && json[0] === '{' && - (token = this.tokens[this.tokens.length - 1])) { - token.json = token.text.indexOf('.') === -1; - } - } else if (this.is('(){}[].,;:?')) { - this.tokens.push({ - index: this.index, - text: this.ch, - json: (this.was(':[,') && this.is('{[')) || this.is('}]:,') - }); - if (this.is('{[')) json.unshift(this.ch); - if (this.is('}]')) json.shift(); - this.index++; - } else if (this.isWhitespace(this.ch)) { - this.index++; - continue; - } else { - var ch2 = this.ch + this.peek(); - var ch3 = ch2 + this.peek(2); - var fn = OPERATORS[this.ch]; - var fn2 = OPERATORS[ch2]; - var fn3 = OPERATORS[ch3]; - if (fn3) { - this.tokens.push({index: this.index, text: ch3, fn: fn3}); - this.index += 3; - } else if (fn2) { - this.tokens.push({index: this.index, text: ch2, fn: fn2}); - this.index += 2; - } else if (fn) { - this.tokens.push({ - index: this.index, - text: this.ch, - fn: fn, - json: (this.was('[,:') && this.is('+-')) - }); - this.index += 1; - } else { - this.throwError('Unexpected next character ', this.index, this.index + 1); - } - } - this.lastCh = this.ch; - } - return this.tokens; - }, - - is: function(chars) { - return chars.indexOf(this.ch) !== -1; - }, - - was: function(chars) { - return chars.indexOf(this.lastCh) !== -1; - }, - - peek: function(i) { - var num = i || 1; - return (this.index + num < this.text.length) ? this.text.charAt(this.index + num) : false; - }, - - isNumber: function(ch) { - return ('0' <= ch && ch <= '9'); - }, - - isWhitespace: function(ch) { - // IE treats non-breaking space as \u00A0 - return (ch === ' ' || ch === '\r' || ch === '\t' || - ch === '\n' || ch === '\v' || ch === '\u00A0'); - }, - - isIdent: function(ch) { - return ('a' <= ch && ch <= 'z' || - 'A' <= ch && ch <= 'Z' || - '_' === ch || ch === '$'); - }, - - isExpOperator: function(ch) { - return (ch === '-' || ch === '+' || this.isNumber(ch)); - }, - - throwError: function(error, start, end) { - end = end || this.index; - var colStr = (isDefined(start) - ? 's ' + start + '-' + this.index + ' [' + this.text.substring(start, end) + ']' - : ' ' + end); - throw $parseMinErr('lexerr', 'Lexer Error: {0} at column{1} in expression [{2}].', - error, colStr, this.text); - }, - - readNumber: function() { - var number = ''; - var start = this.index; - while (this.index < this.text.length) { - var ch = lowercase(this.text.charAt(this.index)); - if (ch == '.' || this.isNumber(ch)) { - number += ch; - } else { - var peekCh = this.peek(); - if (ch == 'e' && this.isExpOperator(peekCh)) { - number += ch; - } else if (this.isExpOperator(ch) && - peekCh && this.isNumber(peekCh) && - number.charAt(number.length - 1) == 'e') { - number += ch; - } else if (this.isExpOperator(ch) && - (!peekCh || !this.isNumber(peekCh)) && - number.charAt(number.length - 1) == 'e') { - this.throwError('Invalid exponent'); - } else { - break; - } - } - this.index++; - } - number = 1 * number; - this.tokens.push({ - index: start, - text: number, - json: true, - fn: function() { return number; } - }); - }, - - readIdent: function() { - var parser = this; - - var ident = ''; - var start = this.index; - - var lastDot, peekIndex, methodName, ch; - - while (this.index < this.text.length) { - ch = this.text.charAt(this.index); - if (ch === '.' || this.isIdent(ch) || this.isNumber(ch)) { - if (ch === '.') lastDot = this.index; - ident += ch; - } else { - break; - } - this.index++; - } - - //check if this is not a method invocation and if it is back out to last dot - if (lastDot) { - peekIndex = this.index; - while (peekIndex < this.text.length) { - ch = this.text.charAt(peekIndex); - if (ch === '(') { - methodName = ident.substr(lastDot - start + 1); - ident = ident.substr(0, lastDot - start); - this.index = peekIndex; - break; - } - if (this.isWhitespace(ch)) { - peekIndex++; - } else { - break; - } - } - } - - - var token = { - index: start, - text: ident - }; - - // OPERATORS is our own object so we don't need to use special hasOwnPropertyFn - if (OPERATORS.hasOwnProperty(ident)) { - token.fn = OPERATORS[ident]; - token.json = OPERATORS[ident]; - } else { - var getter = getterFn(ident, this.options, this.text); - token.fn = extend(function(self, locals) { - return (getter(self, locals)); - }, { - assign: function(self, value) { - return setter(self, ident, value, parser.text, parser.options); - } - }); - } - - this.tokens.push(token); - - if (methodName) { - this.tokens.push({ - index:lastDot, - text: '.', - json: false - }); - this.tokens.push({ - index: lastDot + 1, - text: methodName, - json: false - }); - } - }, - - readString: function(quote) { - var start = this.index; - this.index++; - var string = ''; - var rawString = quote; - var escape = false; - while (this.index < this.text.length) { - var ch = this.text.charAt(this.index); - rawString += ch; - if (escape) { - if (ch === 'u') { - var hex = this.text.substring(this.index + 1, this.index + 5); - if (!hex.match(/[\da-f]{4}/i)) - this.throwError('Invalid unicode escape [\\u' + hex + ']'); - this.index += 4; - string += String.fromCharCode(parseInt(hex, 16)); - } else { - var rep = ESCAPE[ch]; - if (rep) { - string += rep; - } else { - string += ch; - } - } - escape = false; - } else if (ch === '\\') { - escape = true; - } else if (ch === quote) { - this.index++; - this.tokens.push({ - index: start, - text: rawString, - string: string, - json: true, - fn: function() { return string; } - }); - return; - } else { - string += ch; - } - this.index++; - } - this.throwError('Unterminated quote', start); - } -}; - - -/** - * @constructor - */ -var Parser = function (lexer, $filter, options) { - this.lexer = lexer; - this.$filter = $filter; - this.options = options; -}; - -Parser.ZERO = function () { return 0; }; - -Parser.prototype = { - constructor: Parser, - - parse: function (text, json) { - this.text = text; - - //TODO(i): strip all the obsolte json stuff from this file - this.json = json; - - this.tokens = this.lexer.lex(text); - - if (json) { - // The extra level of aliasing is here, just in case the lexer misses something, so that - // we prevent any accidental execution in JSON. - this.assignment = this.logicalOR; - - this.functionCall = - this.fieldAccess = - this.objectIndex = - this.filterChain = function() { - this.throwError('is not valid json', {text: text, index: 0}); - }; - } - - var value = json ? this.primary() : this.statements(); - - if (this.tokens.length !== 0) { - this.throwError('is an unexpected token', this.tokens[0]); - } - - value.literal = !!value.literal; - value.constant = !!value.constant; - - return value; - }, - - primary: function () { - var primary; - if (this.expect('(')) { - primary = this.filterChain(); - this.consume(')'); - } else if (this.expect('[')) { - primary = this.arrayDeclaration(); - } else if (this.expect('{')) { - primary = this.object(); - } else { - var token = this.expect(); - primary = token.fn; - if (!primary) { - this.throwError('not a primary expression', token); - } - if (token.json) { - primary.constant = true; - primary.literal = true; - } - } - - var next, context; - while ((next = this.expect('(', '[', '.'))) { - if (next.text === '(') { - primary = this.functionCall(primary, context); - context = null; - } else if (next.text === '[') { - context = primary; - primary = this.objectIndex(primary); - } else if (next.text === '.') { - context = primary; - primary = this.fieldAccess(primary); - } else { - this.throwError('IMPOSSIBLE'); - } - } - return primary; - }, - - throwError: function(msg, token) { - throw $parseMinErr('syntax', - 'Syntax Error: Token \'{0}\' {1} at column {2} of the expression [{3}] starting at [{4}].', - token.text, msg, (token.index + 1), this.text, this.text.substring(token.index)); - }, - - peekToken: function() { - if (this.tokens.length === 0) - throw $parseMinErr('ueoe', 'Unexpected end of expression: {0}', this.text); - return this.tokens[0]; - }, - - peek: function(e1, e2, e3, e4) { - if (this.tokens.length > 0) { - var token = this.tokens[0]; - var t = token.text; - if (t === e1 || t === e2 || t === e3 || t === e4 || - (!e1 && !e2 && !e3 && !e4)) { - return token; - } - } - return false; - }, - - expect: function(e1, e2, e3, e4){ - var token = this.peek(e1, e2, e3, e4); - if (token) { - if (this.json && !token.json) { - this.throwError('is not valid json', token); - } - this.tokens.shift(); - return token; - } - return false; - }, - - consume: function(e1){ - if (!this.expect(e1)) { - this.throwError('is unexpected, expecting [' + e1 + ']', this.peek()); - } - }, - - unaryFn: function(fn, right) { - return extend(function(self, locals) { - return fn(self, locals, right); - }, { - constant:right.constant - }); - }, - - ternaryFn: function(left, middle, right){ - return extend(function(self, locals){ - return left(self, locals) ? middle(self, locals) : right(self, locals); - }, { - constant: left.constant && middle.constant && right.constant - }); - }, - - binaryFn: function(left, fn, right) { - return extend(function(self, locals) { - return fn(self, locals, left, right); - }, { - constant:left.constant && right.constant - }); - }, - - statements: function() { - var statements = []; - while (true) { - if (this.tokens.length > 0 && !this.peek('}', ')', ';', ']')) - statements.push(this.filterChain()); - if (!this.expect(';')) { - // optimize for the common case where there is only one statement. - // TODO(size): maybe we should not support multiple statements? - return (statements.length === 1) - ? statements[0] - : function(self, locals) { - var value; - for (var i = 0; i < statements.length; i++) { - var statement = statements[i]; - if (statement) { - value = statement(self, locals); - } - } - return value; - }; - } - } - }, - - filterChain: function() { - var left = this.expression(); - var token; - while (true) { - if ((token = this.expect('|'))) { - left = this.binaryFn(left, token.fn, this.filter()); - } else { - return left; - } - } - }, - - filter: function() { - var token = this.expect(); - var fn = this.$filter(token.text); - var argsFn = []; - while (true) { - if ((token = this.expect(':'))) { - argsFn.push(this.expression()); - } else { - var fnInvoke = function(self, locals, input) { - var args = [input]; - for (var i = 0; i < argsFn.length; i++) { - args.push(argsFn[i](self, locals)); - } - return fn.apply(self, args); - }; - return function() { - return fnInvoke; - }; - } - } - }, - - expression: function() { - return this.assignment(); - }, - - assignment: function() { - var left = this.ternary(); - var right; - var token; - if ((token = this.expect('='))) { - if (!left.assign) { - this.throwError('implies assignment but [' + - this.text.substring(0, token.index) + '] can not be assigned to', token); - } - right = this.ternary(); - return function(scope, locals) { - return left.assign(scope, right(scope, locals), locals); - }; - } - return left; - }, - - ternary: function() { - var left = this.logicalOR(); - var middle; - var token; - if ((token = this.expect('?'))) { - middle = this.ternary(); - if ((token = this.expect(':'))) { - return this.ternaryFn(left, middle, this.ternary()); - } else { - this.throwError('expected :', token); - } - } else { - return left; - } - }, - - logicalOR: function() { - var left = this.logicalAND(); - var token; - while (true) { - if ((token = this.expect('||'))) { - left = this.binaryFn(left, token.fn, this.logicalAND()); - } else { - return left; - } - } - }, - - logicalAND: function() { - var left = this.equality(); - var token; - if ((token = this.expect('&&'))) { - left = this.binaryFn(left, token.fn, this.logicalAND()); - } - return left; - }, - - equality: function() { - var left = this.relational(); - var token; - if ((token = this.expect('==','!=','===','!=='))) { - left = this.binaryFn(left, token.fn, this.equality()); - } - return left; - }, - - relational: function() { - var left = this.additive(); - var token; - if ((token = this.expect('<', '>', '<=', '>='))) { - left = this.binaryFn(left, token.fn, this.relational()); - } - return left; - }, - - additive: function() { - var left = this.multiplicative(); - var token; - while ((token = this.expect('+','-'))) { - left = this.binaryFn(left, token.fn, this.multiplicative()); - } - return left; - }, - - multiplicative: function() { - var left = this.unary(); - var token; - while ((token = this.expect('*','/','%'))) { - left = this.binaryFn(left, token.fn, this.unary()); - } - return left; - }, - - unary: function() { - var token; - if (this.expect('+')) { - return this.primary(); - } else if ((token = this.expect('-'))) { - return this.binaryFn(Parser.ZERO, token.fn, this.unary()); - } else if ((token = this.expect('!'))) { - return this.unaryFn(token.fn, this.unary()); - } else { - return this.primary(); - } - }, - - fieldAccess: function(object) { - var parser = this; - var field = this.expect().text; - var getter = getterFn(field, this.options, this.text); - - return extend(function(scope, locals, self) { - return getter(self || object(scope, locals), locals); - }, { - assign: function(scope, value, locals) { - return setter(object(scope, locals), field, value, parser.text, parser.options); - } - }); - }, - - objectIndex: function(obj) { - var parser = this; - - var indexFn = this.expression(); - this.consume(']'); - - return extend(function(self, locals) { - var o = obj(self, locals), - i = indexFn(self, locals), - v, p; - - if (!o) return undefined; - v = ensureSafeObject(o[i], parser.text); - if (v && v.then && parser.options.unwrapPromises) { - p = v; - if (!('$$v' in v)) { - p.$$v = undefined; - p.then(function(val) { p.$$v = val; }); - } - v = v.$$v; - } - return v; - }, { - assign: function(self, value, locals) { - var key = indexFn(self, locals); - // prevent overwriting of Function.constructor which would break ensureSafeObject check - var safe = ensureSafeObject(obj(self, locals), parser.text); - return safe[key] = value; - } - }); - }, - - functionCall: function(fn, contextGetter) { - var argsFn = []; - if (this.peekToken().text !== ')') { - do { - argsFn.push(this.expression()); - } while (this.expect(',')); - } - this.consume(')'); - - var parser = this; - - return function(scope, locals) { - var args = []; - var context = contextGetter ? contextGetter(scope, locals) : scope; - - for (var i = 0; i < argsFn.length; i++) { - args.push(argsFn[i](scope, locals)); - } - var fnPtr = fn(scope, locals, context) || noop; - - ensureSafeObject(context, parser.text); - ensureSafeObject(fnPtr, parser.text); - - // IE stupidity! (IE doesn't have apply for some native functions) - var v = fnPtr.apply - ? fnPtr.apply(context, args) - : fnPtr(args[0], args[1], args[2], args[3], args[4]); - - return ensureSafeObject(v, parser.text); - }; - }, - - // This is used with json array declaration - arrayDeclaration: function () { - var elementFns = []; - var allConstant = true; - if (this.peekToken().text !== ']') { - do { - var elementFn = this.expression(); - elementFns.push(elementFn); - if (!elementFn.constant) { - allConstant = false; - } - } while (this.expect(',')); - } - this.consume(']'); - - return extend(function(self, locals) { - var array = []; - for (var i = 0; i < elementFns.length; i++) { - array.push(elementFns[i](self, locals)); - } - return array; - }, { - literal: true, - constant: allConstant - }); - }, - - object: function () { - var keyValues = []; - var allConstant = true; - if (this.peekToken().text !== '}') { - do { - var token = this.expect(), - key = token.string || token.text; - this.consume(':'); - var value = this.expression(); - keyValues.push({key: key, value: value}); - if (!value.constant) { - allConstant = false; - } - } while (this.expect(',')); - } - this.consume('}'); - - return extend(function(self, locals) { - var object = {}; - for (var i = 0; i < keyValues.length; i++) { - var keyValue = keyValues[i]; - object[keyValue.key] = keyValue.value(self, locals); - } - return object; - }, { - literal: true, - constant: allConstant - }); - } -}; - - -////////////////////////////////////////////////// -// Parser helper functions -////////////////////////////////////////////////// - -function setter(obj, path, setValue, fullExp, options) { - //needed? - options = options || {}; - - var element = path.split('.'), key; - for (var i = 0; element.length > 1; i++) { - key = ensureSafeMemberName(element.shift(), fullExp); - var propertyObj = obj[key]; - if (!propertyObj) { - propertyObj = {}; - obj[key] = propertyObj; - } - obj = propertyObj; - if (obj.then && options.unwrapPromises) { - promiseWarning(fullExp); - if (!("$$v" in obj)) { - (function(promise) { - promise.then(function(val) { promise.$$v = val; }); } - )(obj); - } - if (obj.$$v === undefined) { - obj.$$v = {}; - } - obj = obj.$$v; - } - } - key = ensureSafeMemberName(element.shift(), fullExp); - obj[key] = setValue; - return setValue; -} - -var getterFnCache = {}; - -/** - * Implementation of the "Black Hole" variant from: - * - http://jsperf.com/angularjs-parse-getter/4 - * - http://jsperf.com/path-evaluation-simplified/7 - */ -function cspSafeGetterFn(key0, key1, key2, key3, key4, fullExp, options) { - ensureSafeMemberName(key0, fullExp); - ensureSafeMemberName(key1, fullExp); - ensureSafeMemberName(key2, fullExp); - ensureSafeMemberName(key3, fullExp); - ensureSafeMemberName(key4, fullExp); - - return !options.unwrapPromises - ? function cspSafeGetter(scope, locals) { - var pathVal = (locals && locals.hasOwnProperty(key0)) ? locals : scope; - - if (pathVal == null) return pathVal; - pathVal = pathVal[key0]; - - if (pathVal == null) return key1 ? undefined : pathVal; - pathVal = pathVal[key1]; - - if (pathVal == null) return key2 ? undefined : pathVal; - pathVal = pathVal[key2]; - - if (pathVal == null) return key3 ? undefined : pathVal; - pathVal = pathVal[key3]; - - if (pathVal == null) return key4 ? undefined : pathVal; - pathVal = pathVal[key4]; - - return pathVal; - } - : function cspSafePromiseEnabledGetter(scope, locals) { - var pathVal = (locals && locals.hasOwnProperty(key0)) ? locals : scope, - promise; - - if (pathVal == null) return pathVal; - - pathVal = pathVal[key0]; - if (pathVal && pathVal.then) { - promiseWarning(fullExp); - if (!("$$v" in pathVal)) { - promise = pathVal; - promise.$$v = undefined; - promise.then(function(val) { promise.$$v = val; }); - } - pathVal = pathVal.$$v; - } - if (pathVal == null) return key1 ? undefined : pathVal; - - pathVal = pathVal[key1]; - if (pathVal && pathVal.then) { - promiseWarning(fullExp); - if (!("$$v" in pathVal)) { - promise = pathVal; - promise.$$v = undefined; - promise.then(function(val) { promise.$$v = val; }); - } - pathVal = pathVal.$$v; - } - if (pathVal == null) return key2 ? undefined : pathVal; - - pathVal = pathVal[key2]; - if (pathVal && pathVal.then) { - promiseWarning(fullExp); - if (!("$$v" in pathVal)) { - promise = pathVal; - promise.$$v = undefined; - promise.then(function(val) { promise.$$v = val; }); - } - pathVal = pathVal.$$v; - } - if (pathVal == null) return key3 ? undefined : pathVal; - - pathVal = pathVal[key3]; - if (pathVal && pathVal.then) { - promiseWarning(fullExp); - if (!("$$v" in pathVal)) { - promise = pathVal; - promise.$$v = undefined; - promise.then(function(val) { promise.$$v = val; }); - } - pathVal = pathVal.$$v; - } - if (pathVal == null) return key4 ? undefined : pathVal; - - pathVal = pathVal[key4]; - if (pathVal && pathVal.then) { - promiseWarning(fullExp); - if (!("$$v" in pathVal)) { - promise = pathVal; - promise.$$v = undefined; - promise.then(function(val) { promise.$$v = val; }); - } - pathVal = pathVal.$$v; - } - return pathVal; - }; -} - -function simpleGetterFn1(key0, fullExp) { - ensureSafeMemberName(key0, fullExp); - - return function simpleGetterFn1(scope, locals) { - if (scope == null) return undefined; - return ((locals && locals.hasOwnProperty(key0)) ? locals : scope)[key0]; - }; -} - -function simpleGetterFn2(key0, key1, fullExp) { - ensureSafeMemberName(key0, fullExp); - ensureSafeMemberName(key1, fullExp); - - return function simpleGetterFn2(scope, locals) { - if (scope == null) return undefined; - scope = ((locals && locals.hasOwnProperty(key0)) ? locals : scope)[key0]; - return scope == null ? undefined : scope[key1]; - }; -} - -function getterFn(path, options, fullExp) { - // Check whether the cache has this getter already. - // We can use hasOwnProperty directly on the cache because we ensure, - // see below, that the cache never stores a path called 'hasOwnProperty' - if (getterFnCache.hasOwnProperty(path)) { - return getterFnCache[path]; - } - - var pathKeys = path.split('.'), - pathKeysLength = pathKeys.length, - fn; - - // When we have only 1 or 2 tokens, use optimized special case closures. - // http://jsperf.com/angularjs-parse-getter/6 - if (!options.unwrapPromises && pathKeysLength === 1) { - fn = simpleGetterFn1(pathKeys[0], fullExp); - } else if (!options.unwrapPromises && pathKeysLength === 2) { - fn = simpleGetterFn2(pathKeys[0], pathKeys[1], fullExp); - } else if (options.csp) { - if (pathKeysLength < 6) { - fn = cspSafeGetterFn(pathKeys[0], pathKeys[1], pathKeys[2], pathKeys[3], pathKeys[4], fullExp, - options); - } else { - fn = function(scope, locals) { - var i = 0, val; - do { - val = cspSafeGetterFn(pathKeys[i++], pathKeys[i++], pathKeys[i++], pathKeys[i++], - pathKeys[i++], fullExp, options)(scope, locals); - - locals = undefined; // clear after first iteration - scope = val; - } while (i < pathKeysLength); - return val; - }; - } - } else { - var code = 'var p;\n'; - forEach(pathKeys, function(key, index) { - ensureSafeMemberName(key, fullExp); - code += 'if(s == null) return undefined;\n' + - 's='+ (index - // we simply dereference 's' on any .dot notation - ? 's' - // but if we are first then we check locals first, and if so read it first - : '((k&&k.hasOwnProperty("' + key + '"))?k:s)') + '["' + key + '"]' + ';\n' + - (options.unwrapPromises - ? 'if (s && s.then) {\n' + - ' pw("' + fullExp.replace(/(["\r\n])/g, '\\$1') + '");\n' + - ' if (!("$$v" in s)) {\n' + - ' p=s;\n' + - ' p.$$v = undefined;\n' + - ' p.then(function(v) {p.$$v=v;});\n' + - '}\n' + - ' s=s.$$v\n' + - '}\n' - : ''); - }); - code += 'return s;'; - - /* jshint -W054 */ - var evaledFnGetter = new Function('s', 'k', 'pw', code); // s=scope, k=locals, pw=promiseWarning - /* jshint +W054 */ - evaledFnGetter.toString = valueFn(code); - fn = options.unwrapPromises ? function(scope, locals) { - return evaledFnGetter(scope, locals, promiseWarning); - } : evaledFnGetter; - } - - // Only cache the value if it's not going to mess up the cache object - // This is more performant that using Object.prototype.hasOwnProperty.call - if (path !== 'hasOwnProperty') { - getterFnCache[path] = fn; - } - return fn; -} - -/////////////////////////////////// - -/** - * @ngdoc function - * @name ng.$parse - * @function - * - * @description - * - * Converts Angular {@link guide/expression expression} into a function. - * - *
- *   var getter = $parse('user.name');
- *   var setter = getter.assign;
- *   var context = {user:{name:'angular'}};
- *   var locals = {user:{name:'local'}};
- *
- *   expect(getter(context)).toEqual('angular');
- *   setter(context, 'newValue');
- *   expect(context.user.name).toEqual('newValue');
- *   expect(getter(context, locals)).toEqual('local');
- * 
- * - * - * @param {string} expression String expression to compile. - * @returns {function(context, locals)} a function which represents the compiled expression: - * - * * `context` – `{object}` – an object against which any expressions embedded in the strings - * are evaluated against (typically a scope object). - * * `locals` – `{object=}` – local variables context object, useful for overriding values in - * `context`. - * - * The returned function also has the following properties: - * * `literal` – `{boolean}` – whether the expression's top-level node is a JavaScript - * literal. - * * `constant` – `{boolean}` – whether the expression is made entirely of JavaScript - * constant literals. - * * `assign` – `{?function(context, value)}` – if the expression is assignable, this will be - * set to a function to change its value on the given context. - * - */ - - -/** - * @ngdoc object - * @name ng.$parseProvider - * @function - * - * @description - * `$parseProvider` can be used for configuring the default behavior of the {@link ng.$parse $parse} - * service. - */ -function $ParseProvider() { - var cache = {}; - - var $parseOptions = { - csp: false, - unwrapPromises: false, - logPromiseWarnings: true - }; - - - /** - * @deprecated Promise unwrapping via $parse is deprecated and will be removed in the future. - * - * @ngdoc method - * @name ng.$parseProvider#unwrapPromises - * @methodOf ng.$parseProvider - * @description - * - * **This feature is deprecated, see deprecation notes below for more info** - * - * If set to true (default is false), $parse will unwrap promises automatically when a promise is - * found at any part of the expression. In other words, if set to true, the expression will always - * result in a non-promise value. - * - * While the promise is unresolved, it's treated as undefined, but once resolved and fulfilled, - * the fulfillment value is used in place of the promise while evaluating the expression. - * - * **Deprecation notice** - * - * This is a feature that didn't prove to be wildly useful or popular, primarily because of the - * dichotomy between data access in templates (accessed as raw values) and controller code - * (accessed as promises). - * - * In most code we ended up resolving promises manually in controllers anyway and thus unifying - * the model access there. - * - * Other downsides of automatic promise unwrapping: - * - * - when building components it's often desirable to receive the raw promises - * - adds complexity and slows down expression evaluation - * - makes expression code pre-generation unattractive due to the amount of code that needs to be - * generated - * - makes IDE auto-completion and tool support hard - * - * **Warning Logs** - * - * If the unwrapping is enabled, Angular will log a warning about each expression that unwraps a - * promise (to reduce the noise, each expression is logged only once). To disable this logging use - * `$parseProvider.logPromiseWarnings(false)` api. - * - * - * @param {boolean=} value New value. - * @returns {boolean|self} Returns the current setting when used as getter and self if used as - * setter. - */ - this.unwrapPromises = function(value) { - if (isDefined(value)) { - $parseOptions.unwrapPromises = !!value; - return this; - } else { - return $parseOptions.unwrapPromises; - } - }; - - - /** - * @deprecated Promise unwrapping via $parse is deprecated and will be removed in the future. - * - * @ngdoc method - * @name ng.$parseProvider#logPromiseWarnings - * @methodOf ng.$parseProvider - * @description - * - * Controls whether Angular should log a warning on any encounter of a promise in an expression. - * - * The default is set to `true`. - * - * This setting applies only if `$parseProvider.unwrapPromises` setting is set to true as well. - * - * @param {boolean=} value New value. - * @returns {boolean|self} Returns the current setting when used as getter and self if used as - * setter. - */ - this.logPromiseWarnings = function(value) { - if (isDefined(value)) { - $parseOptions.logPromiseWarnings = value; - return this; - } else { - return $parseOptions.logPromiseWarnings; - } - }; - - - this.$get = ['$filter', '$sniffer', '$log', function($filter, $sniffer, $log) { - $parseOptions.csp = $sniffer.csp; - - promiseWarning = function promiseWarningFn(fullExp) { - if (!$parseOptions.logPromiseWarnings || promiseWarningCache.hasOwnProperty(fullExp)) return; - promiseWarningCache[fullExp] = true; - $log.warn('[$parse] Promise found in the expression `' + fullExp + '`. ' + - 'Automatic unwrapping of promises in Angular expressions is deprecated.'); - }; - - return function(exp) { - var parsedExpression; - - switch (typeof exp) { - case 'string': - - if (cache.hasOwnProperty(exp)) { - return cache[exp]; - } - - var lexer = new Lexer($parseOptions); - var parser = new Parser(lexer, $filter, $parseOptions); - parsedExpression = parser.parse(exp, false); - - if (exp !== 'hasOwnProperty') { - // Only cache the value if it's not going to mess up the cache object - // This is more performant that using Object.prototype.hasOwnProperty.call - cache[exp] = parsedExpression; - } - - return parsedExpression; - - case 'function': - return exp; - - default: - return noop; - } - }; - }]; -} - -/** - * @ngdoc service - * @name ng.$q - * @requires $rootScope - * - * @description - * A promise/deferred implementation inspired by [Kris Kowal's Q](https://github.com/kriskowal/q). - * - * [The CommonJS Promise proposal](http://wiki.commonjs.org/wiki/Promises) describes a promise as an - * interface for interacting with an object that represents the result of an action that is - * performed asynchronously, and may or may not be finished at any given point in time. - * - * From the perspective of dealing with error handling, deferred and promise APIs are to - * asynchronous programming what `try`, `catch` and `throw` keywords are to synchronous programming. - * - *
- *   // for the purpose of this example let's assume that variables `$q` and `scope` are
- *   // available in the current lexical scope (they could have been injected or passed in).
- *
- *   function asyncGreet(name) {
- *     var deferred = $q.defer();
- *
- *     setTimeout(function() {
- *       // since this fn executes async in a future turn of the event loop, we need to wrap
- *       // our code into an $apply call so that the model changes are properly observed.
- *       scope.$apply(function() {
- *         deferred.notify('About to greet ' + name + '.');
- *
- *         if (okToGreet(name)) {
- *           deferred.resolve('Hello, ' + name + '!');
- *         } else {
- *           deferred.reject('Greeting ' + name + ' is not allowed.');
- *         }
- *       });
- *     }, 1000);
- *
- *     return deferred.promise;
- *   }
- *
- *   var promise = asyncGreet('Robin Hood');
- *   promise.then(function(greeting) {
- *     alert('Success: ' + greeting);
- *   }, function(reason) {
- *     alert('Failed: ' + reason);
- *   }, function(update) {
- *     alert('Got notification: ' + update);
- *   });
- * 
- * - * At first it might not be obvious why this extra complexity is worth the trouble. The payoff - * comes in the way of guarantees that promise and deferred APIs make, see - * https://github.com/kriskowal/uncommonjs/blob/master/promises/specification.md. - * - * Additionally the promise api allows for composition that is very hard to do with the - * traditional callback ([CPS](http://en.wikipedia.org/wiki/Continuation-passing_style)) approach. - * For more on this please see the [Q documentation](https://github.com/kriskowal/q) especially the - * section on serial or parallel joining of promises. - * - * - * # The Deferred API - * - * A new instance of deferred is constructed by calling `$q.defer()`. - * - * The purpose of the deferred object is to expose the associated Promise instance as well as APIs - * that can be used for signaling the successful or unsuccessful completion, as well as the status - * of the task. - * - * **Methods** - * - * - `resolve(value)` – resolves the derived promise with the `value`. If the value is a rejection - * constructed via `$q.reject`, the promise will be rejected instead. - * - `reject(reason)` – rejects the derived promise with the `reason`. This is equivalent to - * resolving it with a rejection constructed via `$q.reject`. - * - `notify(value)` - provides updates on the status of the promises execution. This may be called - * multiple times before the promise is either resolved or rejected. - * - * **Properties** - * - * - promise – `{Promise}` – promise object associated with this deferred. - * - * - * # The Promise API - * - * A new promise instance is created when a deferred instance is created and can be retrieved by - * calling `deferred.promise`. - * - * The purpose of the promise object is to allow for interested parties to get access to the result - * of the deferred task when it completes. - * - * **Methods** - * - * - `then(successCallback, errorCallback, notifyCallback)` – regardless of when the promise was or - * will be resolved or rejected, `then` calls one of the success or error callbacks asynchronously - * as soon as the result is available. The callbacks are called with a single argument: the result - * or rejection reason. Additionally, the notify callback may be called zero or more times to - * provide a progress indication, before the promise is resolved or rejected. - * - * This method *returns a new promise* which is resolved or rejected via the return value of the - * `successCallback`, `errorCallback`. It also notifies via the return value of the - * `notifyCallback` method. The promise can not be resolved or rejected from the notifyCallback - * method. - * - * - `catch(errorCallback)` – shorthand for `promise.then(null, errorCallback)` - * - * - `finally(callback)` – allows you to observe either the fulfillment or rejection of a promise, - * but to do so without modifying the final value. This is useful to release resources or do some - * clean-up that needs to be done whether the promise was rejected or resolved. See the [full - * specification](https://github.com/kriskowal/q/wiki/API-Reference#promisefinallycallback) for - * more information. - * - * Because `finally` is a reserved word in JavaScript and reserved keywords are not supported as - * property names by ES3, you'll need to invoke the method like `promise['finally'](callback)` to - * make your code IE8 compatible. - * - * # Chaining promises - * - * Because calling the `then` method of a promise returns a new derived promise, it is easily - * possible to create a chain of promises: - * - *
- *   promiseB = promiseA.then(function(result) {
- *     return result + 1;
- *   });
- *
- *   // promiseB will be resolved immediately after promiseA is resolved and its value
- *   // will be the result of promiseA incremented by 1
- * 
- * - * It is possible to create chains of any length and since a promise can be resolved with another - * promise (which will defer its resolution further), it is possible to pause/defer resolution of - * the promises at any point in the chain. This makes it possible to implement powerful APIs like - * $http's response interceptors. - * - * - * # Differences between Kris Kowal's Q and $q - * - * There are two main differences: - * - * - $q is integrated with the {@link ng.$rootScope.Scope} Scope model observation - * mechanism in angular, which means faster propagation of resolution or rejection into your - * models and avoiding unnecessary browser repaints, which would result in flickering UI. - * - Q has many more features than $q, but that comes at a cost of bytes. $q is tiny, but contains - * all the important functionality needed for common async tasks. - * - * # Testing - * - *
- *    it('should simulate promise', inject(function($q, $rootScope) {
- *      var deferred = $q.defer();
- *      var promise = deferred.promise;
- *      var resolvedValue;
- *
- *      promise.then(function(value) { resolvedValue = value; });
- *      expect(resolvedValue).toBeUndefined();
- *
- *      // Simulate resolving of promise
- *      deferred.resolve(123);
- *      // Note that the 'then' function does not get called synchronously.
- *      // This is because we want the promise API to always be async, whether or not
- *      // it got called synchronously or asynchronously.
- *      expect(resolvedValue).toBeUndefined();
- *
- *      // Propagate promise resolution to 'then' functions using $apply().
- *      $rootScope.$apply();
- *      expect(resolvedValue).toEqual(123);
- *    }));
- *  
- */ -function $QProvider() { - - this.$get = ['$rootScope', '$exceptionHandler', function($rootScope, $exceptionHandler) { - return qFactory(function(callback) { - $rootScope.$evalAsync(callback); - }, $exceptionHandler); - }]; -} - - -/** - * Constructs a promise manager. - * - * @param {function(function)} nextTick Function for executing functions in the next turn. - * @param {function(...*)} exceptionHandler Function into which unexpected exceptions are passed for - * debugging purposes. - * @returns {object} Promise manager. - */ -function qFactory(nextTick, exceptionHandler) { - - /** - * @ngdoc - * @name ng.$q#defer - * @methodOf ng.$q - * @description - * Creates a `Deferred` object which represents a task which will finish in the future. - * - * @returns {Deferred} Returns a new instance of deferred. - */ - var defer = function() { - var pending = [], - value, deferred; - - deferred = { - - resolve: function(val) { - if (pending) { - var callbacks = pending; - pending = undefined; - value = ref(val); - - if (callbacks.length) { - nextTick(function() { - var callback; - for (var i = 0, ii = callbacks.length; i < ii; i++) { - callback = callbacks[i]; - value.then(callback[0], callback[1], callback[2]); - } - }); - } - } - }, - - - reject: function(reason) { - deferred.resolve(reject(reason)); - }, - - - notify: function(progress) { - if (pending) { - var callbacks = pending; - - if (pending.length) { - nextTick(function() { - var callback; - for (var i = 0, ii = callbacks.length; i < ii; i++) { - callback = callbacks[i]; - callback[2](progress); - } - }); - } - } - }, - - - promise: { - then: function(callback, errback, progressback) { - var result = defer(); - - var wrappedCallback = function(value) { - try { - result.resolve((isFunction(callback) ? callback : defaultCallback)(value)); - } catch(e) { - result.reject(e); - exceptionHandler(e); - } - }; - - var wrappedErrback = function(reason) { - try { - result.resolve((isFunction(errback) ? errback : defaultErrback)(reason)); - } catch(e) { - result.reject(e); - exceptionHandler(e); - } - }; - - var wrappedProgressback = function(progress) { - try { - result.notify((isFunction(progressback) ? progressback : defaultCallback)(progress)); - } catch(e) { - exceptionHandler(e); - } - }; - - if (pending) { - pending.push([wrappedCallback, wrappedErrback, wrappedProgressback]); - } else { - value.then(wrappedCallback, wrappedErrback, wrappedProgressback); - } - - return result.promise; - }, - - "catch": function(callback) { - return this.then(null, callback); - }, - - "finally": function(callback) { - - function makePromise(value, resolved) { - var result = defer(); - if (resolved) { - result.resolve(value); - } else { - result.reject(value); - } - return result.promise; - } - - function handleCallback(value, isResolved) { - var callbackOutput = null; - try { - callbackOutput = (callback ||defaultCallback)(); - } catch(e) { - return makePromise(e, false); - } - if (callbackOutput && isFunction(callbackOutput.then)) { - return callbackOutput.then(function() { - return makePromise(value, isResolved); - }, function(error) { - return makePromise(error, false); - }); - } else { - return makePromise(value, isResolved); - } - } - - return this.then(function(value) { - return handleCallback(value, true); - }, function(error) { - return handleCallback(error, false); - }); - } - } - }; - - return deferred; - }; - - - var ref = function(value) { - if (value && isFunction(value.then)) return value; - return { - then: function(callback) { - var result = defer(); - nextTick(function() { - result.resolve(callback(value)); - }); - return result.promise; - } - }; - }; - - - /** - * @ngdoc - * @name ng.$q#reject - * @methodOf ng.$q - * @description - * Creates a promise that is resolved as rejected with the specified `reason`. This api should be - * used to forward rejection in a chain of promises. If you are dealing with the last promise in - * a promise chain, you don't need to worry about it. - * - * When comparing deferreds/promises to the familiar behavior of try/catch/throw, think of - * `reject` as the `throw` keyword in JavaScript. This also means that if you "catch" an error via - * a promise error callback and you want to forward the error to the promise derived from the - * current promise, you have to "rethrow" the error by returning a rejection constructed via - * `reject`. - * - *
-   *   promiseB = promiseA.then(function(result) {
-   *     // success: do something and resolve promiseB
-   *     //          with the old or a new result
-   *     return result;
-   *   }, function(reason) {
-   *     // error: handle the error if possible and
-   *     //        resolve promiseB with newPromiseOrValue,
-   *     //        otherwise forward the rejection to promiseB
-   *     if (canHandle(reason)) {
-   *      // handle the error and recover
-   *      return newPromiseOrValue;
-   *     }
-   *     return $q.reject(reason);
-   *   });
-   * 
- * - * @param {*} reason Constant, message, exception or an object representing the rejection reason. - * @returns {Promise} Returns a promise that was already resolved as rejected with the `reason`. - */ - var reject = function(reason) { - return { - then: function(callback, errback) { - var result = defer(); - nextTick(function() { - try { - result.resolve((isFunction(errback) ? errback : defaultErrback)(reason)); - } catch(e) { - result.reject(e); - exceptionHandler(e); - } - }); - return result.promise; - } - }; - }; - - - /** - * @ngdoc - * @name ng.$q#when - * @methodOf ng.$q - * @description - * Wraps an object that might be a value or a (3rd party) then-able promise into a $q promise. - * This is useful when you are dealing with an object that might or might not be a promise, or if - * the promise comes from a source that can't be trusted. - * - * @param {*} value Value or a promise - * @returns {Promise} Returns a promise of the passed value or promise - */ - var when = function(value, callback, errback, progressback) { - var result = defer(), - done; - - var wrappedCallback = function(value) { - try { - return (isFunction(callback) ? callback : defaultCallback)(value); - } catch (e) { - exceptionHandler(e); - return reject(e); - } - }; - - var wrappedErrback = function(reason) { - try { - return (isFunction(errback) ? errback : defaultErrback)(reason); - } catch (e) { - exceptionHandler(e); - return reject(e); - } - }; - - var wrappedProgressback = function(progress) { - try { - return (isFunction(progressback) ? progressback : defaultCallback)(progress); - } catch (e) { - exceptionHandler(e); - } - }; - - nextTick(function() { - ref(value).then(function(value) { - if (done) return; - done = true; - result.resolve(ref(value).then(wrappedCallback, wrappedErrback, wrappedProgressback)); - }, function(reason) { - if (done) return; - done = true; - result.resolve(wrappedErrback(reason)); - }, function(progress) { - if (done) return; - result.notify(wrappedProgressback(progress)); - }); - }); - - return result.promise; - }; - - - function defaultCallback(value) { - return value; - } - - - function defaultErrback(reason) { - return reject(reason); - } - - - /** - * @ngdoc - * @name ng.$q#all - * @methodOf ng.$q - * @description - * Combines multiple promises into a single promise that is resolved when all of the input - * promises are resolved. - * - * @param {Array.|Object.} promises An array or hash of promises. - * @returns {Promise} Returns a single promise that will be resolved with an array/hash of values, - * each value corresponding to the promise at the same index/key in the `promises` array/hash. - * If any of the promises is resolved with a rejection, this resulting promise will be rejected - * with the same rejection value. - */ - function all(promises) { - var deferred = defer(), - counter = 0, - results = isArray(promises) ? [] : {}; - - forEach(promises, function(promise, key) { - counter++; - ref(promise).then(function(value) { - if (results.hasOwnProperty(key)) return; - results[key] = value; - if (!(--counter)) deferred.resolve(results); - }, function(reason) { - if (results.hasOwnProperty(key)) return; - deferred.reject(reason); - }); - }); - - if (counter === 0) { - deferred.resolve(results); - } - - return deferred.promise; - } - - return { - defer: defer, - reject: reject, - when: when, - all: all - }; -} - -/** - * DESIGN NOTES - * - * The design decisions behind the scope are heavily favored for speed and memory consumption. - * - * The typical use of scope is to watch the expressions, which most of the time return the same - * value as last time so we optimize the operation. - * - * Closures construction is expensive in terms of speed as well as memory: - * - No closures, instead use prototypical inheritance for API - * - Internal state needs to be stored on scope directly, which means that private state is - * exposed as $$____ properties - * - * Loop operations are optimized by using while(count--) { ... } - * - this means that in order to keep the same order of execution as addition we have to add - * items to the array at the beginning (shift) instead of at the end (push) - * - * Child scopes are created and removed often - * - Using an array would be slow since inserts in middle are expensive so we use linked list - * - * There are few watches then a lot of observers. This is why you don't want the observer to be - * implemented in the same way as watch. Watch requires return of initialization function which - * are expensive to construct. - */ - - -/** - * @ngdoc object - * @name ng.$rootScopeProvider - * @description - * - * Provider for the $rootScope service. - */ - -/** - * @ngdoc function - * @name ng.$rootScopeProvider#digestTtl - * @methodOf ng.$rootScopeProvider - * @description - * - * Sets the number of `$digest` iterations the scope should attempt to execute before giving up and - * assuming that the model is unstable. - * - * The current default is 10 iterations. - * - * In complex applications it's possible that the dependencies between `$watch`s will result in - * several digest iterations. However if an application needs more than the default 10 digest - * iterations for its model to stabilize then you should investigate what is causing the model to - * continuously change during the digest. - * - * Increasing the TTL could have performance implications, so you should not change it without - * proper justification. - * - * @param {number} limit The number of digest iterations. - */ - - -/** - * @ngdoc object - * @name ng.$rootScope - * @description - * - * Every application has a single root {@link ng.$rootScope.Scope scope}. - * All other scopes are descendant scopes of the root scope. Scopes provide separation - * between the model and the view, via a mechanism for watching the model for changes. - * They also provide an event emission/broadcast and subscription facility. See the - * {@link guide/scope developer guide on scopes}. - */ -function $RootScopeProvider(){ - var TTL = 10; - var $rootScopeMinErr = minErr('$rootScope'); - var lastDirtyWatch = null; - - this.digestTtl = function(value) { - if (arguments.length) { - TTL = value; - } - return TTL; - }; - - this.$get = ['$injector', '$exceptionHandler', '$parse', '$browser', - function( $injector, $exceptionHandler, $parse, $browser) { - - /** - * @ngdoc function - * @name ng.$rootScope.Scope - * - * @description - * A root scope can be retrieved using the {@link ng.$rootScope $rootScope} key from the - * {@link AUTO.$injector $injector}. Child scopes are created using the - * {@link ng.$rootScope.Scope#methods_$new $new()} method. (Most scopes are created automatically when - * compiled HTML template is executed.) - * - * Here is a simple scope snippet to show how you can interact with the scope. - *
-     * 
-     * 
- * - * # Inheritance - * A scope can inherit from a parent scope, as in this example: - *
-         var parent = $rootScope;
-         var child = parent.$new();
-
-         parent.salutation = "Hello";
-         child.name = "World";
-         expect(child.salutation).toEqual('Hello');
-
-         child.salutation = "Welcome";
-         expect(child.salutation).toEqual('Welcome');
-         expect(parent.salutation).toEqual('Hello');
-     * 
- * - * - * @param {Object.=} providers Map of service factory which need to be - * provided for the current scope. Defaults to {@link ng}. - * @param {Object.=} instanceCache Provides pre-instantiated services which should - * append/override services provided by `providers`. This is handy - * when unit-testing and having the need to override a default - * service. - * @returns {Object} Newly created scope. - * - */ - function Scope() { - this.$id = nextUid(); - this.$$phase = this.$parent = this.$$watchers = - this.$$nextSibling = this.$$prevSibling = - this.$$childHead = this.$$childTail = null; - this['this'] = this.$root = this; - this.$$destroyed = false; - this.$$asyncQueue = []; - this.$$postDigestQueue = []; - this.$$listeners = {}; - this.$$isolateBindings = {}; - } - - /** - * @ngdoc property - * @name ng.$rootScope.Scope#$id - * @propertyOf ng.$rootScope.Scope - * @returns {number} Unique scope ID (monotonically increasing alphanumeric sequence) useful for - * debugging. - */ - - - Scope.prototype = { - constructor: Scope, - /** - * @ngdoc function - * @name ng.$rootScope.Scope#$new - * @methodOf ng.$rootScope.Scope - * @function - * - * @description - * Creates a new child {@link ng.$rootScope.Scope scope}. - * - * The parent scope will propagate the {@link ng.$rootScope.Scope#methods_$digest $digest()} and - * {@link ng.$rootScope.Scope#methods_$digest $digest()} events. The scope can be removed from the - * scope hierarchy using {@link ng.$rootScope.Scope#methods_$destroy $destroy()}. - * - * {@link ng.$rootScope.Scope#methods_$destroy $destroy()} must be called on a scope when it is - * desired for the scope and its child scopes to be permanently detached from the parent and - * thus stop participating in model change detection and listener notification by invoking. - * - * @param {boolean} isolate If true, then the scope does not prototypically inherit from the - * parent scope. The scope is isolated, as it can not see parent scope properties. - * When creating widgets, it is useful for the widget to not accidentally read parent - * state. - * - * @returns {Object} The newly created child scope. - * - */ - $new: function(isolate) { - var ChildScope, - child; - - if (isolate) { - child = new Scope(); - child.$root = this.$root; - // ensure that there is just one async queue per $rootScope and its children - child.$$asyncQueue = this.$$asyncQueue; - child.$$postDigestQueue = this.$$postDigestQueue; - } else { - ChildScope = function() {}; // should be anonymous; This is so that when the minifier munges - // the name it does not become random set of chars. This will then show up as class - // name in the debugger. - ChildScope.prototype = this; - child = new ChildScope(); - child.$id = nextUid(); - } - child['this'] = child; - child.$$listeners = {}; - child.$parent = this; - child.$$watchers = child.$$nextSibling = child.$$childHead = child.$$childTail = null; - child.$$prevSibling = this.$$childTail; - if (this.$$childHead) { - this.$$childTail.$$nextSibling = child; - this.$$childTail = child; - } else { - this.$$childHead = this.$$childTail = child; - } - return child; - }, - - /** - * @ngdoc function - * @name ng.$rootScope.Scope#$watch - * @methodOf ng.$rootScope.Scope - * @function - * - * @description - * Registers a `listener` callback to be executed whenever the `watchExpression` changes. - * - * - The `watchExpression` is called on every call to {@link ng.$rootScope.Scope#methods_$digest - * $digest()} and should return the value that will be watched. (Since - * {@link ng.$rootScope.Scope#methods_$digest $digest()} reruns when it detects changes the - * `watchExpression` can execute multiple times per - * {@link ng.$rootScope.Scope#methods_$digest $digest()} and should be idempotent.) - * - The `listener` is called only when the value from the current `watchExpression` and the - * previous call to `watchExpression` are not equal (with the exception of the initial run, - * see below). The inequality is determined according to - * {@link angular.equals} function. To save the value of the object for later comparison, - * the {@link angular.copy} function is used. It also means that watching complex options - * will have adverse memory and performance implications. - * - The watch `listener` may change the model, which may trigger other `listener`s to fire. - * This is achieved by rerunning the watchers until no changes are detected. The rerun - * iteration limit is 10 to prevent an infinite loop deadlock. - * - * - * If you want to be notified whenever {@link ng.$rootScope.Scope#methods_$digest $digest} is called, - * you can register a `watchExpression` function with no `listener`. (Since `watchExpression` - * can execute multiple times per {@link ng.$rootScope.Scope#methods_$digest $digest} cycle when a - * change is detected, be prepared for multiple calls to your listener.) - * - * After a watcher is registered with the scope, the `listener` fn is called asynchronously - * (via {@link ng.$rootScope.Scope#methods_$evalAsync $evalAsync}) to initialize the - * watcher. In rare cases, this is undesirable because the listener is called when the result - * of `watchExpression` didn't change. To detect this scenario within the `listener` fn, you - * can compare the `newVal` and `oldVal`. If these two values are identical (`===`) then the - * listener was called due to initialization. - * - * The example below contains an illustration of using a function as your $watch listener - * - * - * # Example - *
-           // let's assume that scope was dependency injected as the $rootScope
-           var scope = $rootScope;
-           scope.name = 'misko';
-           scope.counter = 0;
-
-           expect(scope.counter).toEqual(0);
-           scope.$watch('name', function(newValue, oldValue) {
-             scope.counter = scope.counter + 1;
-           });
-           expect(scope.counter).toEqual(0);
-
-           scope.$digest();
-           // no variable change
-           expect(scope.counter).toEqual(0);
-
-           scope.name = 'adam';
-           scope.$digest();
-           expect(scope.counter).toEqual(1);
-
-
-
-           // Using a listener function
-           var food;
-           scope.foodCounter = 0;
-           expect(scope.foodCounter).toEqual(0);
-           scope.$watch(
-             // This is the listener function
-             function() { return food; },
-             // This is the change handler
-             function(newValue, oldValue) {
-               if ( newValue !== oldValue ) {
-                 // Only increment the counter if the value changed
-                 scope.foodCounter = scope.foodCounter + 1;
-               }
-             }
-           );
-           // No digest has been run so the counter will be zero
-           expect(scope.foodCounter).toEqual(0);
-
-           // Run the digest but since food has not changed cout will still be zero
-           scope.$digest();
-           expect(scope.foodCounter).toEqual(0);
-
-           // Update food and run digest.  Now the counter will increment
-           food = 'cheeseburger';
-           scope.$digest();
-           expect(scope.foodCounter).toEqual(1);
-
-       * 
- * - * - * - * @param {(function()|string)} watchExpression Expression that is evaluated on each - * {@link ng.$rootScope.Scope#methods_$digest $digest} cycle. A change in the return value triggers - * a call to the `listener`. - * - * - `string`: Evaluated as {@link guide/expression expression} - * - `function(scope)`: called with current `scope` as a parameter. - * @param {(function()|string)=} listener Callback called whenever the return value of - * the `watchExpression` changes. - * - * - `string`: Evaluated as {@link guide/expression expression} - * - `function(newValue, oldValue, scope)`: called with current and previous values as - * parameters. - * - * @param {boolean=} objectEquality Compare object for equality rather than for reference. - * @returns {function()} Returns a deregistration function for this listener. - */ - $watch: function(watchExp, listener, objectEquality) { - var scope = this, - get = compileToFn(watchExp, 'watch'), - array = scope.$$watchers, - watcher = { - fn: listener, - last: initWatchVal, - get: get, - exp: watchExp, - eq: !!objectEquality - }; - - lastDirtyWatch = null; - - // in the case user pass string, we need to compile it, do we really need this ? - if (!isFunction(listener)) { - var listenFn = compileToFn(listener || noop, 'listener'); - watcher.fn = function(newVal, oldVal, scope) {listenFn(scope);}; - } - - if (typeof watchExp == 'string' && get.constant) { - var originalFn = watcher.fn; - watcher.fn = function(newVal, oldVal, scope) { - originalFn.call(this, newVal, oldVal, scope); - arrayRemove(array, watcher); - }; - } - - if (!array) { - array = scope.$$watchers = []; - } - // we use unshift since we use a while loop in $digest for speed. - // the while loop reads in reverse order. - array.unshift(watcher); - - return function() { - arrayRemove(array, watcher); - }; - }, - - - /** - * @ngdoc function - * @name ng.$rootScope.Scope#$watchCollection - * @methodOf ng.$rootScope.Scope - * @function - * - * @description - * Shallow watches the properties of an object and fires whenever any of the properties change - * (for arrays, this implies watching the array items; for object maps, this implies watching - * the properties). If a change is detected, the `listener` callback is fired. - * - * - The `obj` collection is observed via standard $watch operation and is examined on every - * call to $digest() to see if any items have been added, removed, or moved. - * - The `listener` is called whenever anything within the `obj` has changed. Examples include - * adding, removing, and moving items belonging to an object or array. - * - * - * # Example - *
-          $scope.names = ['igor', 'matias', 'misko', 'james'];
-          $scope.dataCount = 4;
-
-          $scope.$watchCollection('names', function(newNames, oldNames) {
-            $scope.dataCount = newNames.length;
-          });
-
-          expect($scope.dataCount).toEqual(4);
-          $scope.$digest();
-
-          //still at 4 ... no changes
-          expect($scope.dataCount).toEqual(4);
-
-          $scope.names.pop();
-          $scope.$digest();
-
-          //now there's been a change
-          expect($scope.dataCount).toEqual(3);
-       * 
- * - * - * @param {string|Function(scope)} obj Evaluated as {@link guide/expression expression}. The - * expression value should evaluate to an object or an array which is observed on each - * {@link ng.$rootScope.Scope#methods_$digest $digest} cycle. Any shallow change within the - * collection will trigger a call to the `listener`. - * - * @param {function(newCollection, oldCollection, scope)} listener a callback function that is - * fired with both the `newCollection` and `oldCollection` as parameters. - * The `newCollection` object is the newly modified data obtained from the `obj` expression - * and the `oldCollection` object is a copy of the former collection data. - * The `scope` refers to the current scope. - * - * @returns {function()} Returns a de-registration function for this listener. When the - * de-registration function is executed, the internal watch operation is terminated. - */ - $watchCollection: function(obj, listener) { - var self = this; - var oldValue; - var newValue; - var changeDetected = 0; - var objGetter = $parse(obj); - var internalArray = []; - var internalObject = {}; - var oldLength = 0; - - function $watchCollectionWatch() { - newValue = objGetter(self); - var newLength, key; - - if (!isObject(newValue)) { - if (oldValue !== newValue) { - oldValue = newValue; - changeDetected++; - } - } else if (isArrayLike(newValue)) { - if (oldValue !== internalArray) { - // we are transitioning from something which was not an array into array. - oldValue = internalArray; - oldLength = oldValue.length = 0; - changeDetected++; - } - - newLength = newValue.length; - - if (oldLength !== newLength) { - // if lengths do not match we need to trigger change notification - changeDetected++; - oldValue.length = oldLength = newLength; - } - // copy the items to oldValue and look for changes. - for (var i = 0; i < newLength; i++) { - if (oldValue[i] !== newValue[i]) { - changeDetected++; - oldValue[i] = newValue[i]; - } - } - } else { - if (oldValue !== internalObject) { - // we are transitioning from something which was not an object into object. - oldValue = internalObject = {}; - oldLength = 0; - changeDetected++; - } - // copy the items to oldValue and look for changes. - newLength = 0; - for (key in newValue) { - if (newValue.hasOwnProperty(key)) { - newLength++; - if (oldValue.hasOwnProperty(key)) { - if (oldValue[key] !== newValue[key]) { - changeDetected++; - oldValue[key] = newValue[key]; - } - } else { - oldLength++; - oldValue[key] = newValue[key]; - changeDetected++; - } - } - } - if (oldLength > newLength) { - // we used to have more keys, need to find them and destroy them. - changeDetected++; - for(key in oldValue) { - if (oldValue.hasOwnProperty(key) && !newValue.hasOwnProperty(key)) { - oldLength--; - delete oldValue[key]; - } - } - } - } - return changeDetected; - } - - function $watchCollectionAction() { - listener(newValue, oldValue, self); - } - - return this.$watch($watchCollectionWatch, $watchCollectionAction); - }, - - /** - * @ngdoc function - * @name ng.$rootScope.Scope#$digest - * @methodOf ng.$rootScope.Scope - * @function - * - * @description - * Processes all of the {@link ng.$rootScope.Scope#methods_$watch watchers} of the current scope and - * its children. Because a {@link ng.$rootScope.Scope#methods_$watch watcher}'s listener can change - * the model, the `$digest()` keeps calling the {@link ng.$rootScope.Scope#methods_$watch watchers} - * until no more listeners are firing. This means that it is possible to get into an infinite - * loop. This function will throw `'Maximum iteration limit exceeded.'` if the number of - * iterations exceeds 10. - * - * Usually, you don't call `$digest()` directly in - * {@link ng.directive:ngController controllers} or in - * {@link ng.$compileProvider#methods_directive directives}. - * Instead, you should call {@link ng.$rootScope.Scope#methods_$apply $apply()} (typically from within - * a {@link ng.$compileProvider#methods_directive directives}), which will force a `$digest()`. - * - * If you want to be notified whenever `$digest()` is called, - * you can register a `watchExpression` function with - * {@link ng.$rootScope.Scope#methods_$watch $watch()} with no `listener`. - * - * In unit tests, you may need to call `$digest()` to simulate the scope life cycle. - * - * # Example - *
-           var scope = ...;
-           scope.name = 'misko';
-           scope.counter = 0;
-
-           expect(scope.counter).toEqual(0);
-           scope.$watch('name', function(newValue, oldValue) {
-             scope.counter = scope.counter + 1;
-           });
-           expect(scope.counter).toEqual(0);
-
-           scope.$digest();
-           // no variable change
-           expect(scope.counter).toEqual(0);
-
-           scope.name = 'adam';
-           scope.$digest();
-           expect(scope.counter).toEqual(1);
-       * 
- * - */ - $digest: function() { - var watch, value, last, - watchers, - asyncQueue = this.$$asyncQueue, - postDigestQueue = this.$$postDigestQueue, - length, - dirty, ttl = TTL, - next, current, target = this, - watchLog = [], - logIdx, logMsg, asyncTask; - - beginPhase('$digest'); - - lastDirtyWatch = null; - - do { // "while dirty" loop - dirty = false; - current = target; - - while(asyncQueue.length) { - try { - asyncTask = asyncQueue.shift(); - asyncTask.scope.$eval(asyncTask.expression); - } catch (e) { - clearPhase(); - $exceptionHandler(e); - } - lastDirtyWatch = null; - } - - traverseScopesLoop: - do { // "traverse the scopes" loop - if ((watchers = current.$$watchers)) { - // process our watches - length = watchers.length; - while (length--) { - try { - watch = watchers[length]; - // Most common watches are on primitives, in which case we can short - // circuit it with === operator, only when === fails do we use .equals - if (watch) { - if ((value = watch.get(current)) !== (last = watch.last) && - !(watch.eq - ? equals(value, last) - : (typeof value == 'number' && typeof last == 'number' - && isNaN(value) && isNaN(last)))) { - dirty = true; - lastDirtyWatch = watch; - watch.last = watch.eq ? copy(value) : value; - watch.fn(value, ((last === initWatchVal) ? value : last), current); - if (ttl < 5) { - logIdx = 4 - ttl; - if (!watchLog[logIdx]) watchLog[logIdx] = []; - logMsg = (isFunction(watch.exp)) - ? 'fn: ' + (watch.exp.name || watch.exp.toString()) - : watch.exp; - logMsg += '; newVal: ' + toJson(value) + '; oldVal: ' + toJson(last); - watchLog[logIdx].push(logMsg); - } - } else if (watch === lastDirtyWatch) { - // If the most recently dirty watcher is now clean, short circuit since the remaining watchers - // have already been tested. - dirty = false; - break traverseScopesLoop; - } - } - } catch (e) { - clearPhase(); - $exceptionHandler(e); - } - } - } - - // Insanity Warning: scope depth-first traversal - // yes, this code is a bit crazy, but it works and we have tests to prove it! - // this piece should be kept in sync with the traversal in $broadcast - if (!(next = (current.$$childHead || - (current !== target && current.$$nextSibling)))) { - while(current !== target && !(next = current.$$nextSibling)) { - current = current.$parent; - } - } - } while ((current = next)); - - // `break traverseScopesLoop;` takes us to here - - if(dirty && !(ttl--)) { - clearPhase(); - throw $rootScopeMinErr('infdig', - '{0} $digest() iterations reached. Aborting!\n' + - 'Watchers fired in the last 5 iterations: {1}', - TTL, toJson(watchLog)); - } - - } while (dirty || asyncQueue.length); - - clearPhase(); - - while(postDigestQueue.length) { - try { - postDigestQueue.shift()(); - } catch (e) { - $exceptionHandler(e); - } - } - }, - - - /** - * @ngdoc event - * @name ng.$rootScope.Scope#$destroy - * @eventOf ng.$rootScope.Scope - * @eventType broadcast on scope being destroyed - * - * @description - * Broadcasted when a scope and its children are being destroyed. - * - * Note that, in AngularJS, there is also a `$destroy` jQuery event, which can be used to - * clean up DOM bindings before an element is removed from the DOM. - */ - - /** - * @ngdoc function - * @name ng.$rootScope.Scope#$destroy - * @methodOf ng.$rootScope.Scope - * @function - * - * @description - * Removes the current scope (and all of its children) from the parent scope. Removal implies - * that calls to {@link ng.$rootScope.Scope#methods_$digest $digest()} will no longer - * propagate to the current scope and its children. Removal also implies that the current - * scope is eligible for garbage collection. - * - * The `$destroy()` is usually used by directives such as - * {@link ng.directive:ngRepeat ngRepeat} for managing the - * unrolling of the loop. - * - * Just before a scope is destroyed, a `$destroy` event is broadcasted on this scope. - * Application code can register a `$destroy` event handler that will give it a chance to - * perform any necessary cleanup. - * - * Note that, in AngularJS, there is also a `$destroy` jQuery event, which can be used to - * clean up DOM bindings before an element is removed from the DOM. - */ - $destroy: function() { - // we can't destroy the root scope or a scope that has been already destroyed - if (this.$$destroyed) return; - var parent = this.$parent; - - this.$broadcast('$destroy'); - this.$$destroyed = true; - if (this === $rootScope) return; - - if (parent.$$childHead == this) parent.$$childHead = this.$$nextSibling; - if (parent.$$childTail == this) parent.$$childTail = this.$$prevSibling; - if (this.$$prevSibling) this.$$prevSibling.$$nextSibling = this.$$nextSibling; - if (this.$$nextSibling) this.$$nextSibling.$$prevSibling = this.$$prevSibling; - - // This is bogus code that works around Chrome's GC leak - // see: https://github.com/angular/angular.js/issues/1313#issuecomment-10378451 - this.$parent = this.$$nextSibling = this.$$prevSibling = this.$$childHead = - this.$$childTail = null; - }, - - /** - * @ngdoc function - * @name ng.$rootScope.Scope#$eval - * @methodOf ng.$rootScope.Scope - * @function - * - * @description - * Executes the `expression` on the current scope and returns the result. Any exceptions in - * the expression are propagated (uncaught). This is useful when evaluating Angular - * expressions. - * - * # Example - *
-           var scope = ng.$rootScope.Scope();
-           scope.a = 1;
-           scope.b = 2;
-
-           expect(scope.$eval('a+b')).toEqual(3);
-           expect(scope.$eval(function(scope){ return scope.a + scope.b; })).toEqual(3);
-       * 
- * - * @param {(string|function())=} expression An angular expression to be executed. - * - * - `string`: execute using the rules as defined in {@link guide/expression expression}. - * - `function(scope)`: execute the function with the current `scope` parameter. - * - * @param {(object)=} locals Local variables object, useful for overriding values in scope. - * @returns {*} The result of evaluating the expression. - */ - $eval: function(expr, locals) { - return $parse(expr)(this, locals); - }, - - /** - * @ngdoc function - * @name ng.$rootScope.Scope#$evalAsync - * @methodOf ng.$rootScope.Scope - * @function - * - * @description - * Executes the expression on the current scope at a later point in time. - * - * The `$evalAsync` makes no guarantees as to when the `expression` will be executed, only - * that: - * - * - it will execute after the function that scheduled the evaluation (preferably before DOM - * rendering). - * - at least one {@link ng.$rootScope.Scope#methods_$digest $digest cycle} will be performed after - * `expression` execution. - * - * Any exceptions from the execution of the expression are forwarded to the - * {@link ng.$exceptionHandler $exceptionHandler} service. - * - * __Note:__ if this function is called outside of a `$digest` cycle, a new `$digest` cycle - * will be scheduled. However, it is encouraged to always call code that changes the model - * from within an `$apply` call. That includes code evaluated via `$evalAsync`. - * - * @param {(string|function())=} expression An angular expression to be executed. - * - * - `string`: execute using the rules as defined in {@link guide/expression expression}. - * - `function(scope)`: execute the function with the current `scope` parameter. - * - */ - $evalAsync: function(expr) { - // if we are outside of an $digest loop and this is the first time we are scheduling async - // task also schedule async auto-flush - if (!$rootScope.$$phase && !$rootScope.$$asyncQueue.length) { - $browser.defer(function() { - if ($rootScope.$$asyncQueue.length) { - $rootScope.$digest(); - } - }); - } - - this.$$asyncQueue.push({scope: this, expression: expr}); - }, - - $$postDigest : function(fn) { - this.$$postDigestQueue.push(fn); - }, - - /** - * @ngdoc function - * @name ng.$rootScope.Scope#$apply - * @methodOf ng.$rootScope.Scope - * @function - * - * @description - * `$apply()` is used to execute an expression in angular from outside of the angular - * framework. (For example from browser DOM events, setTimeout, XHR or third party libraries). - * Because we are calling into the angular framework we need to perform proper scope life - * cycle of {@link ng.$exceptionHandler exception handling}, - * {@link ng.$rootScope.Scope#methods_$digest executing watches}. - * - * ## Life cycle - * - * # Pseudo-Code of `$apply()` - *
-           function $apply(expr) {
-             try {
-               return $eval(expr);
-             } catch (e) {
-               $exceptionHandler(e);
-             } finally {
-               $root.$digest();
-             }
-           }
-       * 
- * - * - * Scope's `$apply()` method transitions through the following stages: - * - * 1. The {@link guide/expression expression} is executed using the - * {@link ng.$rootScope.Scope#methods_$eval $eval()} method. - * 2. Any exceptions from the execution of the expression are forwarded to the - * {@link ng.$exceptionHandler $exceptionHandler} service. - * 3. The {@link ng.$rootScope.Scope#methods_$watch watch} listeners are fired immediately after the - * expression was executed using the {@link ng.$rootScope.Scope#methods_$digest $digest()} method. - * - * - * @param {(string|function())=} exp An angular expression to be executed. - * - * - `string`: execute using the rules as defined in {@link guide/expression expression}. - * - `function(scope)`: execute the function with current `scope` parameter. - * - * @returns {*} The result of evaluating the expression. - */ - $apply: function(expr) { - try { - beginPhase('$apply'); - return this.$eval(expr); - } catch (e) { - $exceptionHandler(e); - } finally { - clearPhase(); - try { - $rootScope.$digest(); - } catch (e) { - $exceptionHandler(e); - throw e; - } - } - }, - - /** - * @ngdoc function - * @name ng.$rootScope.Scope#$on - * @methodOf ng.$rootScope.Scope - * @function - * - * @description - * Listens on events of a given type. See {@link ng.$rootScope.Scope#methods_$emit $emit} for - * discussion of event life cycle. - * - * The event listener function format is: `function(event, args...)`. The `event` object - * passed into the listener has the following attributes: - * - * - `targetScope` - `{Scope}`: the scope on which the event was `$emit`-ed or - * `$broadcast`-ed. - * - `currentScope` - `{Scope}`: the current scope which is handling the event. - * - `name` - `{string}`: name of the event. - * - `stopPropagation` - `{function=}`: calling `stopPropagation` function will cancel - * further event propagation (available only for events that were `$emit`-ed). - * - `preventDefault` - `{function}`: calling `preventDefault` sets `defaultPrevented` flag - * to true. - * - `defaultPrevented` - `{boolean}`: true if `preventDefault` was called. - * - * @param {string} name Event name to listen on. - * @param {function(event, args...)} listener Function to call when the event is emitted. - * @returns {function()} Returns a deregistration function for this listener. - */ - $on: function(name, listener) { - var namedListeners = this.$$listeners[name]; - if (!namedListeners) { - this.$$listeners[name] = namedListeners = []; - } - namedListeners.push(listener); - - return function() { - namedListeners[indexOf(namedListeners, listener)] = null; - }; - }, - - - /** - * @ngdoc function - * @name ng.$rootScope.Scope#$emit - * @methodOf ng.$rootScope.Scope - * @function - * - * @description - * Dispatches an event `name` upwards through the scope hierarchy notifying the - * registered {@link ng.$rootScope.Scope#methods_$on} listeners. - * - * The event life cycle starts at the scope on which `$emit` was called. All - * {@link ng.$rootScope.Scope#methods_$on listeners} listening for `name` event on this scope get - * notified. Afterwards, the event traverses upwards toward the root scope and calls all - * registered listeners along the way. The event will stop propagating if one of the listeners - * cancels it. - * - * Any exception emitted from the {@link ng.$rootScope.Scope#methods_$on listeners} will be passed - * onto the {@link ng.$exceptionHandler $exceptionHandler} service. - * - * @param {string} name Event name to emit. - * @param {...*} args Optional set of arguments which will be passed onto the event listeners. - * @return {Object} Event object (see {@link ng.$rootScope.Scope#methods_$on}). - */ - $emit: function(name, args) { - var empty = [], - namedListeners, - scope = this, - stopPropagation = false, - event = { - name: name, - targetScope: scope, - stopPropagation: function() {stopPropagation = true;}, - preventDefault: function() { - event.defaultPrevented = true; - }, - defaultPrevented: false - }, - listenerArgs = concat([event], arguments, 1), - i, length; - - do { - namedListeners = scope.$$listeners[name] || empty; - event.currentScope = scope; - for (i=0, length=namedListeners.length; i= 8 ) { - normalizedVal = urlResolve(uri).href; - if (normalizedVal !== '' && !normalizedVal.match(regex)) { - return 'unsafe:'+normalizedVal; - } - } - return uri; - }; - }; -} - -var $sceMinErr = minErr('$sce'); - -var SCE_CONTEXTS = { - HTML: 'html', - CSS: 'css', - URL: 'url', - // RESOURCE_URL is a subtype of URL used in contexts where a privileged resource is sourced from a - // url. (e.g. ng-include, script src, templateUrl) - RESOURCE_URL: 'resourceUrl', - JS: 'js' -}; - -// Helper functions follow. - -// Copied from: -// http://docs.closure-library.googlecode.com/git/closure_goog_string_string.js.source.html#line962 -// Prereq: s is a string. -function escapeForRegexp(s) { - return s.replace(/([-()\[\]{}+?*.$\^|,:# -1) { - throw $sceMinErr('iwcard', - 'Illegal sequence *** in string matcher. String: {0}', matcher); - } - matcher = escapeForRegexp(matcher). - replace('\\*\\*', '.*'). - replace('\\*', '[^:/.?&;]*'); - return new RegExp('^' + matcher + '$'); - } else if (isRegExp(matcher)) { - // The only other type of matcher allowed is a Regexp. - // Match entire URL / disallow partial matches. - // Flags are reset (i.e. no global, ignoreCase or multiline) - return new RegExp('^' + matcher.source + '$'); - } else { - throw $sceMinErr('imatcher', - 'Matchers may only be "self", string patterns or RegExp objects'); - } -} - - -function adjustMatchers(matchers) { - var adjustedMatchers = []; - if (isDefined(matchers)) { - forEach(matchers, function(matcher) { - adjustedMatchers.push(adjustMatcher(matcher)); - }); - } - return adjustedMatchers; -} - - -/** - * @ngdoc service - * @name ng.$sceDelegate - * @function - * - * @description - * - * `$sceDelegate` is a service that is used by the `$sce` service to provide {@link ng.$sce Strict - * Contextual Escaping (SCE)} services to AngularJS. - * - * Typically, you would configure or override the {@link ng.$sceDelegate $sceDelegate} instead of - * the `$sce` service to customize the way Strict Contextual Escaping works in AngularJS. This is - * because, while the `$sce` provides numerous shorthand methods, etc., you really only need to - * override 3 core functions (`trustAs`, `getTrusted` and `valueOf`) to replace the way things - * work because `$sce` delegates to `$sceDelegate` for these operations. - * - * Refer {@link ng.$sceDelegateProvider $sceDelegateProvider} to configure this service. - * - * The default instance of `$sceDelegate` should work out of the box with little pain. While you - * can override it completely to change the behavior of `$sce`, the common case would - * involve configuring the {@link ng.$sceDelegateProvider $sceDelegateProvider} instead by setting - * your own whitelists and blacklists for trusting URLs used for loading AngularJS resources such as - * templates. Refer {@link ng.$sceDelegateProvider#methods_resourceUrlWhitelist - * $sceDelegateProvider.resourceUrlWhitelist} and {@link - * ng.$sceDelegateProvider#methods_resourceUrlBlacklist $sceDelegateProvider.resourceUrlBlacklist} - */ - -/** - * @ngdoc object - * @name ng.$sceDelegateProvider - * @description - * - * The `$sceDelegateProvider` provider allows developers to configure the {@link ng.$sceDelegate - * $sceDelegate} service. This allows one to get/set the whitelists and blacklists used to ensure - * that the URLs used for sourcing Angular templates are safe. Refer {@link - * ng.$sceDelegateProvider#methods_resourceUrlWhitelist $sceDelegateProvider.resourceUrlWhitelist} and - * {@link ng.$sceDelegateProvider#methods_resourceUrlBlacklist $sceDelegateProvider.resourceUrlBlacklist} - * - * For the general details about this service in Angular, read the main page for {@link ng.$sce - * Strict Contextual Escaping (SCE)}. - * - * **Example**: Consider the following case. - * - * - your app is hosted at url `http://myapp.example.com/` - * - but some of your templates are hosted on other domains you control such as - * `http://srv01.assets.example.com/`,  `http://srv02.assets.example.com/`, etc. - * - and you have an open redirect at `http://myapp.example.com/clickThru?...`. - * - * Here is what a secure configuration for this scenario might look like: - * - *
- *    angular.module('myApp', []).config(function($sceDelegateProvider) {
- *      $sceDelegateProvider.resourceUrlWhitelist([
- *        // Allow same origin resource loads.
- *        'self',
- *        // Allow loading from our assets domain.  Notice the difference between * and **.
- *        'http://srv*.assets.example.com/**']);
- *
- *      // The blacklist overrides the whitelist so the open redirect here is blocked.
- *      $sceDelegateProvider.resourceUrlBlacklist([
- *        'http://myapp.example.com/clickThru**']);
- *      });
- * 
- */ - -function $SceDelegateProvider() { - this.SCE_CONTEXTS = SCE_CONTEXTS; - - // Resource URLs can also be trusted by policy. - var resourceUrlWhitelist = ['self'], - resourceUrlBlacklist = []; - - /** - * @ngdoc function - * @name ng.sceDelegateProvider#resourceUrlWhitelist - * @methodOf ng.$sceDelegateProvider - * @function - * - * @param {Array=} whitelist When provided, replaces the resourceUrlWhitelist with the value - * provided. This must be an array or null. A snapshot of this array is used so further - * changes to the array are ignored. - * - * Follow {@link ng.$sce#resourceUrlPatternItem this link} for a description of the items - * allowed in this array. - * - * Note: **an empty whitelist array will block all URLs**! - * - * @return {Array} the currently set whitelist array. - * - * The **default value** when no whitelist has been explicitly set is `['self']` allowing only - * same origin resource requests. - * - * @description - * Sets/Gets the whitelist of trusted resource URLs. - */ - this.resourceUrlWhitelist = function (value) { - if (arguments.length) { - resourceUrlWhitelist = adjustMatchers(value); - } - return resourceUrlWhitelist; - }; - - /** - * @ngdoc function - * @name ng.sceDelegateProvider#resourceUrlBlacklist - * @methodOf ng.$sceDelegateProvider - * @function - * - * @param {Array=} blacklist When provided, replaces the resourceUrlBlacklist with the value - * provided. This must be an array or null. A snapshot of this array is used so further - * changes to the array are ignored. - * - * Follow {@link ng.$sce#resourceUrlPatternItem this link} for a description of the items - * allowed in this array. - * - * The typical usage for the blacklist is to **block - * [open redirects](http://cwe.mitre.org/data/definitions/601.html)** served by your domain as - * these would otherwise be trusted but actually return content from the redirected domain. - * - * Finally, **the blacklist overrides the whitelist** and has the final say. - * - * @return {Array} the currently set blacklist array. - * - * The **default value** when no whitelist has been explicitly set is the empty array (i.e. there - * is no blacklist.) - * - * @description - * Sets/Gets the blacklist of trusted resource URLs. - */ - - this.resourceUrlBlacklist = function (value) { - if (arguments.length) { - resourceUrlBlacklist = adjustMatchers(value); - } - return resourceUrlBlacklist; - }; - - this.$get = ['$injector', function($injector) { - - var htmlSanitizer = function htmlSanitizer(html) { - throw $sceMinErr('unsafe', 'Attempting to use an unsafe value in a safe context.'); - }; - - if ($injector.has('$sanitize')) { - htmlSanitizer = $injector.get('$sanitize'); - } - - - function matchUrl(matcher, parsedUrl) { - if (matcher === 'self') { - return urlIsSameOrigin(parsedUrl); - } else { - // definitely a regex. See adjustMatchers() - return !!matcher.exec(parsedUrl.href); - } - } - - function isResourceUrlAllowedByPolicy(url) { - var parsedUrl = urlResolve(url.toString()); - var i, n, allowed = false; - // Ensure that at least one item from the whitelist allows this url. - for (i = 0, n = resourceUrlWhitelist.length; i < n; i++) { - if (matchUrl(resourceUrlWhitelist[i], parsedUrl)) { - allowed = true; - break; - } - } - if (allowed) { - // Ensure that no item from the blacklist blocked this url. - for (i = 0, n = resourceUrlBlacklist.length; i < n; i++) { - if (matchUrl(resourceUrlBlacklist[i], parsedUrl)) { - allowed = false; - break; - } - } - } - return allowed; - } - - function generateHolderType(Base) { - var holderType = function TrustedValueHolderType(trustedValue) { - this.$$unwrapTrustedValue = function() { - return trustedValue; - }; - }; - if (Base) { - holderType.prototype = new Base(); - } - holderType.prototype.valueOf = function sceValueOf() { - return this.$$unwrapTrustedValue(); - }; - holderType.prototype.toString = function sceToString() { - return this.$$unwrapTrustedValue().toString(); - }; - return holderType; - } - - var trustedValueHolderBase = generateHolderType(), - byType = {}; - - byType[SCE_CONTEXTS.HTML] = generateHolderType(trustedValueHolderBase); - byType[SCE_CONTEXTS.CSS] = generateHolderType(trustedValueHolderBase); - byType[SCE_CONTEXTS.URL] = generateHolderType(trustedValueHolderBase); - byType[SCE_CONTEXTS.JS] = generateHolderType(trustedValueHolderBase); - byType[SCE_CONTEXTS.RESOURCE_URL] = generateHolderType(byType[SCE_CONTEXTS.URL]); - - /** - * @ngdoc method - * @name ng.$sceDelegate#trustAs - * @methodOf ng.$sceDelegate - * - * @description - * Returns an object that is trusted by angular for use in specified strict - * contextual escaping contexts (such as ng-html-bind-unsafe, ng-include, any src - * attribute interpolation, any dom event binding attribute interpolation - * such as for onclick, etc.) that uses the provided value. - * See {@link ng.$sce $sce} for enabling strict contextual escaping. - * - * @param {string} type The kind of context in which this value is safe for use. e.g. url, - * resourceUrl, html, js and css. - * @param {*} value The value that that should be considered trusted/safe. - * @returns {*} A value that can be used to stand in for the provided `value` in places - * where Angular expects a $sce.trustAs() return value. - */ - function trustAs(type, trustedValue) { - var Constructor = (byType.hasOwnProperty(type) ? byType[type] : null); - if (!Constructor) { - throw $sceMinErr('icontext', - 'Attempted to trust a value in invalid context. Context: {0}; Value: {1}', - type, trustedValue); - } - if (trustedValue === null || trustedValue === undefined || trustedValue === '') { - return trustedValue; - } - // All the current contexts in SCE_CONTEXTS happen to be strings. In order to avoid trusting - // mutable objects, we ensure here that the value passed in is actually a string. - if (typeof trustedValue !== 'string') { - throw $sceMinErr('itype', - 'Attempted to trust a non-string value in a content requiring a string: Context: {0}', - type); - } - return new Constructor(trustedValue); - } - - /** - * @ngdoc method - * @name ng.$sceDelegate#valueOf - * @methodOf ng.$sceDelegate - * - * @description - * If the passed parameter had been returned by a prior call to {@link ng.$sceDelegate#methods_trustAs - * `$sceDelegate.trustAs`}, returns the value that had been passed to {@link - * ng.$sceDelegate#methods_trustAs `$sceDelegate.trustAs`}. - * - * If the passed parameter is not a value that had been returned by {@link - * ng.$sceDelegate#methods_trustAs `$sceDelegate.trustAs`}, returns it as-is. - * - * @param {*} value The result of a prior {@link ng.$sceDelegate#methods_trustAs `$sceDelegate.trustAs`} - * call or anything else. - * @returns {*} The value the was originally provided to {@link ng.$sceDelegate#methods_trustAs - * `$sceDelegate.trustAs`} if `value` is the result of such a call. Otherwise, returns - * `value` unchanged. - */ - function valueOf(maybeTrusted) { - if (maybeTrusted instanceof trustedValueHolderBase) { - return maybeTrusted.$$unwrapTrustedValue(); - } else { - return maybeTrusted; - } - } - - /** - * @ngdoc method - * @name ng.$sceDelegate#getTrusted - * @methodOf ng.$sceDelegate - * - * @description - * Takes the result of a {@link ng.$sceDelegate#methods_trustAs `$sceDelegate.trustAs`} call and - * returns the originally supplied value if the queried context type is a supertype of the - * created type. If this condition isn't satisfied, throws an exception. - * - * @param {string} type The kind of context in which this value is to be used. - * @param {*} maybeTrusted The result of a prior {@link ng.$sceDelegate#methods_trustAs - * `$sceDelegate.trustAs`} call. - * @returns {*} The value the was originally provided to {@link ng.$sceDelegate#methods_trustAs - * `$sceDelegate.trustAs`} if valid in this context. Otherwise, throws an exception. - */ - function getTrusted(type, maybeTrusted) { - if (maybeTrusted === null || maybeTrusted === undefined || maybeTrusted === '') { - return maybeTrusted; - } - var constructor = (byType.hasOwnProperty(type) ? byType[type] : null); - if (constructor && maybeTrusted instanceof constructor) { - return maybeTrusted.$$unwrapTrustedValue(); - } - // If we get here, then we may only take one of two actions. - // 1. sanitize the value for the requested type, or - // 2. throw an exception. - if (type === SCE_CONTEXTS.RESOURCE_URL) { - if (isResourceUrlAllowedByPolicy(maybeTrusted)) { - return maybeTrusted; - } else { - throw $sceMinErr('insecurl', - 'Blocked loading resource from url not allowed by $sceDelegate policy. URL: {0}', - maybeTrusted.toString()); - } - } else if (type === SCE_CONTEXTS.HTML) { - return htmlSanitizer(maybeTrusted); - } - throw $sceMinErr('unsafe', 'Attempting to use an unsafe value in a safe context.'); - } - - return { trustAs: trustAs, - getTrusted: getTrusted, - valueOf: valueOf }; - }]; -} - - -/** - * @ngdoc object - * @name ng.$sceProvider - * @description - * - * The $sceProvider provider allows developers to configure the {@link ng.$sce $sce} service. - * - enable/disable Strict Contextual Escaping (SCE) in a module - * - override the default implementation with a custom delegate - * - * Read more about {@link ng.$sce Strict Contextual Escaping (SCE)}. - */ - -/* jshint maxlen: false*/ - -/** - * @ngdoc service - * @name ng.$sce - * @function - * - * @description - * - * `$sce` is a service that provides Strict Contextual Escaping services to AngularJS. - * - * # Strict Contextual Escaping - * - * Strict Contextual Escaping (SCE) is a mode in which AngularJS requires bindings in certain - * contexts to result in a value that is marked as safe to use for that context. One example of - * such a context is binding arbitrary html controlled by the user via `ng-bind-html`. We refer - * to these contexts as privileged or SCE contexts. - * - * As of version 1.2, Angular ships with SCE enabled by default. - * - * Note: When enabled (the default), IE8 in quirks mode is not supported. In this mode, IE8 allows - * one to execute arbitrary javascript by the use of the expression() syntax. Refer - * to learn more about them. - * You can ensure your document is in standards mode and not quirks mode by adding `` - * to the top of your HTML document. - * - * SCE assists in writing code in way that (a) is secure by default and (b) makes auditing for - * security vulnerabilities such as XSS, clickjacking, etc. a lot easier. - * - * Here's an example of a binding in a privileged context: - * - *
- *     
- *     
- *
- * - * Notice that `ng-bind-html` is bound to `userHtml` controlled by the user. With SCE - * disabled, this application allows the user to render arbitrary HTML into the DIV. - * In a more realistic example, one may be rendering user comments, blog articles, etc. via - * bindings. (HTML is just one example of a context where rendering user controlled input creates - * security vulnerabilities.) - * - * For the case of HTML, you might use a library, either on the client side, or on the server side, - * to sanitize unsafe HTML before binding to the value and rendering it in the document. - * - * How would you ensure that every place that used these types of bindings was bound to a value that - * was sanitized by your library (or returned as safe for rendering by your server?) How can you - * ensure that you didn't accidentally delete the line that sanitized the value, or renamed some - * properties/fields and forgot to update the binding to the sanitized value? - * - * To be secure by default, you want to ensure that any such bindings are disallowed unless you can - * determine that something explicitly says it's safe to use a value for binding in that - * context. You can then audit your code (a simple grep would do) to ensure that this is only done - * for those values that you can easily tell are safe - because they were received from your server, - * sanitized by your library, etc. You can organize your codebase to help with this - perhaps - * allowing only the files in a specific directory to do this. Ensuring that the internal API - * exposed by that code doesn't markup arbitrary values as safe then becomes a more manageable task. - * - * In the case of AngularJS' SCE service, one uses {@link ng.$sce#methods_trustAs $sce.trustAs} - * (and shorthand methods such as {@link ng.$sce#methods_trustAsHtml $sce.trustAsHtml}, etc.) to - * obtain values that will be accepted by SCE / privileged contexts. - * - * - * ## How does it work? - * - * In privileged contexts, directives and code will bind to the result of {@link ng.$sce#methods_getTrusted - * $sce.getTrusted(context, value)} rather than to the value directly. Directives use {@link - * ng.$sce#methods_parse $sce.parseAs} rather than `$parse` to watch attribute bindings, which performs the - * {@link ng.$sce#methods_getTrusted $sce.getTrusted} behind the scenes on non-constant literals. - * - * As an example, {@link ng.directive:ngBindHtml ngBindHtml} uses {@link - * ng.$sce#methods_parseAsHtml $sce.parseAsHtml(binding expression)}. Here's the actual code (slightly - * simplified): - * - *
- *   var ngBindHtmlDirective = ['$sce', function($sce) {
- *     return function(scope, element, attr) {
- *       scope.$watch($sce.parseAsHtml(attr.ngBindHtml), function(value) {
- *         element.html(value || '');
- *       });
- *     };
- *   }];
- * 
- * - * ## Impact on loading templates - * - * This applies both to the {@link ng.directive:ngInclude `ng-include`} directive as well as - * `templateUrl`'s specified by {@link guide/directive directives}. - * - * By default, Angular only loads templates from the same domain and protocol as the application - * document. This is done by calling {@link ng.$sce#methods_getTrustedResourceUrl - * $sce.getTrustedResourceUrl} on the template URL. To load templates from other domains and/or - * protocols, you may either either {@link ng.$sceDelegateProvider#methods_resourceUrlWhitelist whitelist - * them} or {@link ng.$sce#methods_trustAsResourceUrl wrap it} into a trusted value. - * - * *Please note*: - * The browser's - * {@link https://code.google.com/p/browsersec/wiki/Part2#Same-origin_policy_for_XMLHttpRequest - * Same Origin Policy} and {@link http://www.w3.org/TR/cors/ Cross-Origin Resource Sharing (CORS)} - * policy apply in addition to this and may further restrict whether the template is successfully - * loaded. This means that without the right CORS policy, loading templates from a different domain - * won't work on all browsers. Also, loading templates from `file://` URL does not work on some - * browsers. - * - * ## This feels like too much overhead for the developer? - * - * It's important to remember that SCE only applies to interpolation expressions. - * - * If your expressions are constant literals, they're automatically trusted and you don't need to - * call `$sce.trustAs` on them. (e.g. - * `
`) just works. - * - * Additionally, `a[href]` and `img[src]` automatically sanitize their URLs and do not pass them - * through {@link ng.$sce#methods_getTrusted $sce.getTrusted}. SCE doesn't play a role here. - * - * The included {@link ng.$sceDelegate $sceDelegate} comes with sane defaults to allow you to load - * templates in `ng-include` from your application's domain without having to even know about SCE. - * It blocks loading templates from other domains or loading templates over http from an https - * served document. You can change these by setting your own custom {@link - * ng.$sceDelegateProvider#methods_resourceUrlWhitelist whitelists} and {@link - * ng.$sceDelegateProvider#methods_resourceUrlBlacklist blacklists} for matching such URLs. - * - * This significantly reduces the overhead. It is far easier to pay the small overhead and have an - * application that's secure and can be audited to verify that with much more ease than bolting - * security onto an application later. - * - * - * ## What trusted context types are supported? - * - * | Context | Notes | - * |---------------------|----------------| - * | `$sce.HTML` | For HTML that's safe to source into the application. The {@link ng.directive:ngBindHtml ngBindHtml} directive uses this context for bindings. | - * | `$sce.CSS` | For CSS that's safe to source into the application. Currently unused. Feel free to use it in your own directives. | - * | `$sce.URL` | For URLs that are safe to follow as links. Currently unused (`
Note that `$sce.RESOURCE_URL` makes a stronger statement about the URL than `$sce.URL` does and therefore contexts requiring values trusted for `$sce.RESOURCE_URL` can be used anywhere that values trusted for `$sce.URL` are required. | - * | `$sce.JS` | For JavaScript that is safe to execute in your application's context. Currently unused. Feel free to use it in your own directives. | - * - * ## Format of items in {@link ng.$sceDelegateProvider#methods_resourceUrlWhitelist resourceUrlWhitelist}/{@link ng.$sceDelegateProvider#methods_resourceUrlBlacklist Blacklist}
- * - * Each element in these arrays must be one of the following: - * - * - **'self'** - * - The special **string**, `'self'`, can be used to match against all URLs of the **same - * domain** as the application document using the **same protocol**. - * - **String** (except the special value `'self'`) - * - The string is matched against the full *normalized / absolute URL* of the resource - * being tested (substring matches are not good enough.) - * - There are exactly **two wildcard sequences** - `*` and `**`. All other characters - * match themselves. - * - `*`: matches zero or more occurances of any character other than one of the following 6 - * characters: '`:`', '`/`', '`.`', '`?`', '`&`' and ';'. It's a useful wildcard for use - * in a whitelist. - * - `**`: matches zero or more occurances of *any* character. As such, it's not - * not appropriate to use in for a scheme, domain, etc. as it would match too much. (e.g. - * http://**.example.com/ would match http://evil.com/?ignore=.example.com/ and that might - * not have been the intention.) It's usage at the very end of the path is ok. (e.g. - * http://foo.example.com/templates/**). - * - **RegExp** (*see caveat below*) - * - *Caveat*: While regular expressions are powerful and offer great flexibility, their syntax - * (and all the inevitable escaping) makes them *harder to maintain*. It's easy to - * accidentally introduce a bug when one updates a complex expression (imho, all regexes should - * have good test coverage.). For instance, the use of `.` in the regex is correct only in a - * small number of cases. A `.` character in the regex used when matching the scheme or a - * subdomain could be matched against a `:` or literal `.` that was likely not intended. It - * is highly recommended to use the string patterns and only fall back to regular expressions - * if they as a last resort. - * - The regular expression must be an instance of RegExp (i.e. not a string.) It is - * matched against the **entire** *normalized / absolute URL* of the resource being tested - * (even when the RegExp did not have the `^` and `$` codes.) In addition, any flags - * present on the RegExp (such as multiline, global, ignoreCase) are ignored. - * - If you are generating your Javascript from some other templating engine (not - * recommended, e.g. in issue [#4006](https://github.com/angular/angular.js/issues/4006)), - * remember to escape your regular expression (and be aware that you might need more than - * one level of escaping depending on your templating engine and the way you interpolated - * the value.) Do make use of your platform's escaping mechanism as it might be good - * enough before coding your own. e.g. Ruby has - * [Regexp.escape(str)](http://www.ruby-doc.org/core-2.0.0/Regexp.html#method-c-escape) - * and Python has [re.escape](http://docs.python.org/library/re.html#re.escape). - * Javascript lacks a similar built in function for escaping. Take a look at Google - * Closure library's [goog.string.regExpEscape(s)]( - * http://docs.closure-library.googlecode.com/git/closure_goog_string_string.js.source.html#line962). - * - * Refer {@link ng.$sceDelegateProvider $sceDelegateProvider} for an example. - * - * ## Show me an example using SCE. - * - * @example - - -
-

- User comments
- By default, HTML that isn't explicitly trusted (e.g. Alice's comment) is sanitized when - $sanitize is available. If $sanitize isn't available, this results in an error instead of an - exploit. -
-
- {{userComment.name}}: - -
-
-
-
-
- - - var mySceApp = angular.module('mySceApp', ['ngSanitize']); - - mySceApp.controller("myAppController", function myAppController($http, $templateCache, $sce) { - var self = this; - $http.get("test_data.json", {cache: $templateCache}).success(function(userComments) { - self.userComments = userComments; - }); - self.explicitlyTrustedHtml = $sce.trustAsHtml( - 'Hover over this text.'); - }); - - - -[ - { "name": "Alice", - "htmlComment": - "Is anyone reading this?" - }, - { "name": "Bob", - "htmlComment": "Yes! Am I the only other one?" - } -] - - - - describe('SCE doc demo', function() { - it('should sanitize untrusted values', function() { - expect(element('.htmlComment').html()).toBe('Is anyone reading this?'); - }); - it('should NOT sanitize explicitly trusted values', function() { - expect(element('#explicitlyTrustedHtml').html()).toBe( - 'Hover over this text.'); - }); - }); - -
- * - * - * - * ## Can I disable SCE completely? - * - * Yes, you can. However, this is strongly discouraged. SCE gives you a lot of security benefits - * for little coding overhead. It will be much harder to take an SCE disabled application and - * either secure it on your own or enable SCE at a later stage. It might make sense to disable SCE - * for cases where you have a lot of existing code that was written before SCE was introduced and - * you're migrating them a module at a time. - * - * That said, here's how you can completely disable SCE: - * - *
- *   angular.module('myAppWithSceDisabledmyApp', []).config(function($sceProvider) {
- *     // Completely disable SCE.  For demonstration purposes only!
- *     // Do not use in new projects.
- *     $sceProvider.enabled(false);
- *   });
- * 
- * - */ -/* jshint maxlen: 100 */ - -function $SceProvider() { - var enabled = true; - - /** - * @ngdoc function - * @name ng.sceProvider#enabled - * @methodOf ng.$sceProvider - * @function - * - * @param {boolean=} value If provided, then enables/disables SCE. - * @return {boolean} true if SCE is enabled, false otherwise. - * - * @description - * Enables/disables SCE and returns the current value. - */ - this.enabled = function (value) { - if (arguments.length) { - enabled = !!value; - } - return enabled; - }; - - - /* Design notes on the default implementation for SCE. - * - * The API contract for the SCE delegate - * ------------------------------------- - * The SCE delegate object must provide the following 3 methods: - * - * - trustAs(contextEnum, value) - * This method is used to tell the SCE service that the provided value is OK to use in the - * contexts specified by contextEnum. It must return an object that will be accepted by - * getTrusted() for a compatible contextEnum and return this value. - * - * - valueOf(value) - * For values that were not produced by trustAs(), return them as is. For values that were - * produced by trustAs(), return the corresponding input value to trustAs. Basically, if - * trustAs is wrapping the given values into some type, this operation unwraps it when given - * such a value. - * - * - getTrusted(contextEnum, value) - * This function should return the a value that is safe to use in the context specified by - * contextEnum or throw and exception otherwise. - * - * NOTE: This contract deliberately does NOT state that values returned by trustAs() must be - * opaque or wrapped in some holder object. That happens to be an implementation detail. For - * instance, an implementation could maintain a registry of all trusted objects by context. In - * such a case, trustAs() would return the same object that was passed in. getTrusted() would - * return the same object passed in if it was found in the registry under a compatible context or - * throw an exception otherwise. An implementation might only wrap values some of the time based - * on some criteria. getTrusted() might return a value and not throw an exception for special - * constants or objects even if not wrapped. All such implementations fulfill this contract. - * - * - * A note on the inheritance model for SCE contexts - * ------------------------------------------------ - * I've used inheritance and made RESOURCE_URL wrapped types a subtype of URL wrapped types. This - * is purely an implementation details. - * - * The contract is simply this: - * - * getTrusted($sce.RESOURCE_URL, value) succeeding implies that getTrusted($sce.URL, value) - * will also succeed. - * - * Inheritance happens to capture this in a natural way. In some future, we - * may not use inheritance anymore. That is OK because no code outside of - * sce.js and sceSpecs.js would need to be aware of this detail. - */ - - this.$get = ['$parse', '$sniffer', '$sceDelegate', function( - $parse, $sniffer, $sceDelegate) { - // Prereq: Ensure that we're not running in IE8 quirks mode. In that mode, IE allows - // the "expression(javascript expression)" syntax which is insecure. - if (enabled && $sniffer.msie && $sniffer.msieDocumentMode < 8) { - throw $sceMinErr('iequirks', - 'Strict Contextual Escaping does not support Internet Explorer version < 9 in quirks ' + - 'mode. You can fix this by adding the text to the top of your HTML ' + - 'document. See http://docs.angularjs.org/api/ng.$sce for more information.'); - } - - var sce = copy(SCE_CONTEXTS); - - /** - * @ngdoc function - * @name ng.sce#isEnabled - * @methodOf ng.$sce - * @function - * - * @return {Boolean} true if SCE is enabled, false otherwise. If you want to set the value, you - * have to do it at module config time on {@link ng.$sceProvider $sceProvider}. - * - * @description - * Returns a boolean indicating if SCE is enabled. - */ - sce.isEnabled = function () { - return enabled; - }; - sce.trustAs = $sceDelegate.trustAs; - sce.getTrusted = $sceDelegate.getTrusted; - sce.valueOf = $sceDelegate.valueOf; - - if (!enabled) { - sce.trustAs = sce.getTrusted = function(type, value) { return value; }; - sce.valueOf = identity; - } - - /** - * @ngdoc method - * @name ng.$sce#parse - * @methodOf ng.$sce - * - * @description - * Converts Angular {@link guide/expression expression} into a function. This is like {@link - * ng.$parse $parse} and is identical when the expression is a literal constant. Otherwise, it - * wraps the expression in a call to {@link ng.$sce#methods_getTrusted $sce.getTrusted(*type*, - * *result*)} - * - * @param {string} type The kind of SCE context in which this result will be used. - * @param {string} expression String expression to compile. - * @returns {function(context, locals)} a function which represents the compiled expression: - * - * * `context` – `{object}` – an object against which any expressions embedded in the strings - * are evaluated against (typically a scope object). - * * `locals` – `{object=}` – local variables context object, useful for overriding values in - * `context`. - */ - sce.parseAs = function sceParseAs(type, expr) { - var parsed = $parse(expr); - if (parsed.literal && parsed.constant) { - return parsed; - } else { - return function sceParseAsTrusted(self, locals) { - return sce.getTrusted(type, parsed(self, locals)); - }; - } - }; - - /** - * @ngdoc method - * @name ng.$sce#trustAs - * @methodOf ng.$sce - * - * @description - * Delegates to {@link ng.$sceDelegate#methods_trustAs `$sceDelegate.trustAs`}. As such, - * returns an objectthat is trusted by angular for use in specified strict contextual - * escaping contexts (such as ng-html-bind-unsafe, ng-include, any src attribute - * interpolation, any dom event binding attribute interpolation such as for onclick, etc.) - * that uses the provided value. See * {@link ng.$sce $sce} for enabling strict contextual - * escaping. - * - * @param {string} type The kind of context in which this value is safe for use. e.g. url, - * resource_url, html, js and css. - * @param {*} value The value that that should be considered trusted/safe. - * @returns {*} A value that can be used to stand in for the provided `value` in places - * where Angular expects a $sce.trustAs() return value. - */ - - /** - * @ngdoc method - * @name ng.$sce#trustAsHtml - * @methodOf ng.$sce - * - * @description - * Shorthand method. `$sce.trustAsHtml(value)` → - * {@link ng.$sceDelegate#methods_trustAs `$sceDelegate.trustAs($sce.HTML, value)`} - * - * @param {*} value The value to trustAs. - * @returns {*} An object that can be passed to {@link ng.$sce#methods_getTrustedHtml - * $sce.getTrustedHtml(value)} to obtain the original value. (privileged directives - * only accept expressions that are either literal constants or are the - * return value of {@link ng.$sce#methods_trustAs $sce.trustAs}.) - */ - - /** - * @ngdoc method - * @name ng.$sce#trustAsUrl - * @methodOf ng.$sce - * - * @description - * Shorthand method. `$sce.trustAsUrl(value)` → - * {@link ng.$sceDelegate#methods_trustAs `$sceDelegate.trustAs($sce.URL, value)`} - * - * @param {*} value The value to trustAs. - * @returns {*} An object that can be passed to {@link ng.$sce#methods_getTrustedUrl - * $sce.getTrustedUrl(value)} to obtain the original value. (privileged directives - * only accept expressions that are either literal constants or are the - * return value of {@link ng.$sce#methods_trustAs $sce.trustAs}.) - */ - - /** - * @ngdoc method - * @name ng.$sce#trustAsResourceUrl - * @methodOf ng.$sce - * - * @description - * Shorthand method. `$sce.trustAsResourceUrl(value)` → - * {@link ng.$sceDelegate#methods_trustAs `$sceDelegate.trustAs($sce.RESOURCE_URL, value)`} - * - * @param {*} value The value to trustAs. - * @returns {*} An object that can be passed to {@link ng.$sce#methods_getTrustedResourceUrl - * $sce.getTrustedResourceUrl(value)} to obtain the original value. (privileged directives - * only accept expressions that are either literal constants or are the return - * value of {@link ng.$sce#methods_trustAs $sce.trustAs}.) - */ - - /** - * @ngdoc method - * @name ng.$sce#trustAsJs - * @methodOf ng.$sce - * - * @description - * Shorthand method. `$sce.trustAsJs(value)` → - * {@link ng.$sceDelegate#methods_trustAs `$sceDelegate.trustAs($sce.JS, value)`} - * - * @param {*} value The value to trustAs. - * @returns {*} An object that can be passed to {@link ng.$sce#methods_getTrustedJs - * $sce.getTrustedJs(value)} to obtain the original value. (privileged directives - * only accept expressions that are either literal constants or are the - * return value of {@link ng.$sce#methods_trustAs $sce.trustAs}.) - */ - - /** - * @ngdoc method - * @name ng.$sce#getTrusted - * @methodOf ng.$sce - * - * @description - * Delegates to {@link ng.$sceDelegate#methods_getTrusted `$sceDelegate.getTrusted`}. As such, - * takes the result of a {@link ng.$sce#methods_trustAs `$sce.trustAs`}() call and returns the - * originally supplied value if the queried context type is a supertype of the created type. - * If this condition isn't satisfied, throws an exception. - * - * @param {string} type The kind of context in which this value is to be used. - * @param {*} maybeTrusted The result of a prior {@link ng.$sce#methods_trustAs `$sce.trustAs`} - * call. - * @returns {*} The value the was originally provided to - * {@link ng.$sce#methods_trustAs `$sce.trustAs`} if valid in this context. - * Otherwise, throws an exception. - */ - - /** - * @ngdoc method - * @name ng.$sce#getTrustedHtml - * @methodOf ng.$sce - * - * @description - * Shorthand method. `$sce.getTrustedHtml(value)` → - * {@link ng.$sceDelegate#methods_getTrusted `$sceDelegate.getTrusted($sce.HTML, value)`} - * - * @param {*} value The value to pass to `$sce.getTrusted`. - * @returns {*} The return value of `$sce.getTrusted($sce.HTML, value)` - */ - - /** - * @ngdoc method - * @name ng.$sce#getTrustedCss - * @methodOf ng.$sce - * - * @description - * Shorthand method. `$sce.getTrustedCss(value)` → - * {@link ng.$sceDelegate#methods_getTrusted `$sceDelegate.getTrusted($sce.CSS, value)`} - * - * @param {*} value The value to pass to `$sce.getTrusted`. - * @returns {*} The return value of `$sce.getTrusted($sce.CSS, value)` - */ - - /** - * @ngdoc method - * @name ng.$sce#getTrustedUrl - * @methodOf ng.$sce - * - * @description - * Shorthand method. `$sce.getTrustedUrl(value)` → - * {@link ng.$sceDelegate#methods_getTrusted `$sceDelegate.getTrusted($sce.URL, value)`} - * - * @param {*} value The value to pass to `$sce.getTrusted`. - * @returns {*} The return value of `$sce.getTrusted($sce.URL, value)` - */ - - /** - * @ngdoc method - * @name ng.$sce#getTrustedResourceUrl - * @methodOf ng.$sce - * - * @description - * Shorthand method. `$sce.getTrustedResourceUrl(value)` → - * {@link ng.$sceDelegate#methods_getTrusted `$sceDelegate.getTrusted($sce.RESOURCE_URL, value)`} - * - * @param {*} value The value to pass to `$sceDelegate.getTrusted`. - * @returns {*} The return value of `$sce.getTrusted($sce.RESOURCE_URL, value)` - */ - - /** - * @ngdoc method - * @name ng.$sce#getTrustedJs - * @methodOf ng.$sce - * - * @description - * Shorthand method. `$sce.getTrustedJs(value)` → - * {@link ng.$sceDelegate#methods_getTrusted `$sceDelegate.getTrusted($sce.JS, value)`} - * - * @param {*} value The value to pass to `$sce.getTrusted`. - * @returns {*} The return value of `$sce.getTrusted($sce.JS, value)` - */ - - /** - * @ngdoc method - * @name ng.$sce#parseAsHtml - * @methodOf ng.$sce - * - * @description - * Shorthand method. `$sce.parseAsHtml(expression string)` → - * {@link ng.$sce#methods_parse `$sce.parseAs($sce.HTML, value)`} - * - * @param {string} expression String expression to compile. - * @returns {function(context, locals)} a function which represents the compiled expression: - * - * * `context` – `{object}` – an object against which any expressions embedded in the strings - * are evaluated against (typically a scope object). - * * `locals` – `{object=}` – local variables context object, useful for overriding values in - * `context`. - */ - - /** - * @ngdoc method - * @name ng.$sce#parseAsCss - * @methodOf ng.$sce - * - * @description - * Shorthand method. `$sce.parseAsCss(value)` → - * {@link ng.$sce#methods_parse `$sce.parseAs($sce.CSS, value)`} - * - * @param {string} expression String expression to compile. - * @returns {function(context, locals)} a function which represents the compiled expression: - * - * * `context` – `{object}` – an object against which any expressions embedded in the strings - * are evaluated against (typically a scope object). - * * `locals` – `{object=}` – local variables context object, useful for overriding values in - * `context`. - */ - - /** - * @ngdoc method - * @name ng.$sce#parseAsUrl - * @methodOf ng.$sce - * - * @description - * Shorthand method. `$sce.parseAsUrl(value)` → - * {@link ng.$sce#methods_parse `$sce.parseAs($sce.URL, value)`} - * - * @param {string} expression String expression to compile. - * @returns {function(context, locals)} a function which represents the compiled expression: - * - * * `context` – `{object}` – an object against which any expressions embedded in the strings - * are evaluated against (typically a scope object). - * * `locals` – `{object=}` – local variables context object, useful for overriding values in - * `context`. - */ - - /** - * @ngdoc method - * @name ng.$sce#parseAsResourceUrl - * @methodOf ng.$sce - * - * @description - * Shorthand method. `$sce.parseAsResourceUrl(value)` → - * {@link ng.$sce#methods_parse `$sce.parseAs($sce.RESOURCE_URL, value)`} - * - * @param {string} expression String expression to compile. - * @returns {function(context, locals)} a function which represents the compiled expression: - * - * * `context` – `{object}` – an object against which any expressions embedded in the strings - * are evaluated against (typically a scope object). - * * `locals` – `{object=}` – local variables context object, useful for overriding values in - * `context`. - */ - - /** - * @ngdoc method - * @name ng.$sce#parseAsJs - * @methodOf ng.$sce - * - * @description - * Shorthand method. `$sce.parseAsJs(value)` → - * {@link ng.$sce#methods_parse `$sce.parseAs($sce.JS, value)`} - * - * @param {string} expression String expression to compile. - * @returns {function(context, locals)} a function which represents the compiled expression: - * - * * `context` – `{object}` – an object against which any expressions embedded in the strings - * are evaluated against (typically a scope object). - * * `locals` – `{object=}` – local variables context object, useful for overriding values in - * `context`. - */ - - // Shorthand delegations. - var parse = sce.parseAs, - getTrusted = sce.getTrusted, - trustAs = sce.trustAs; - - forEach(SCE_CONTEXTS, function (enumValue, name) { - var lName = lowercase(name); - sce[camelCase("parse_as_" + lName)] = function (expr) { - return parse(enumValue, expr); - }; - sce[camelCase("get_trusted_" + lName)] = function (value) { - return getTrusted(enumValue, value); - }; - sce[camelCase("trust_as_" + lName)] = function (value) { - return trustAs(enumValue, value); - }; - }); - - return sce; - }]; -} - -/** - * !!! This is an undocumented "private" service !!! - * - * @name ng.$sniffer - * @requires $window - * @requires $document - * - * @property {boolean} history Does the browser support html5 history api ? - * @property {boolean} hashchange Does the browser support hashchange event ? - * @property {boolean} transitions Does the browser support CSS transition events ? - * @property {boolean} animations Does the browser support CSS animation events ? - * - * @description - * This is very simple implementation of testing browser's features. - */ -function $SnifferProvider() { - this.$get = ['$window', '$document', function($window, $document) { - var eventSupport = {}, - android = - int((/android (\d+)/.exec(lowercase(($window.navigator || {}).userAgent)) || [])[1]), - boxee = /Boxee/i.test(($window.navigator || {}).userAgent), - document = $document[0] || {}, - documentMode = document.documentMode, - vendorPrefix, - vendorRegex = /^(Moz|webkit|O|ms)(?=[A-Z])/, - bodyStyle = document.body && document.body.style, - transitions = false, - animations = false, - match; - - if (bodyStyle) { - for(var prop in bodyStyle) { - if(match = vendorRegex.exec(prop)) { - vendorPrefix = match[0]; - vendorPrefix = vendorPrefix.substr(0, 1).toUpperCase() + vendorPrefix.substr(1); - break; - } - } - - if(!vendorPrefix) { - vendorPrefix = ('WebkitOpacity' in bodyStyle) && 'webkit'; - } - - transitions = !!(('transition' in bodyStyle) || (vendorPrefix + 'Transition' in bodyStyle)); - animations = !!(('animation' in bodyStyle) || (vendorPrefix + 'Animation' in bodyStyle)); - - if (android && (!transitions||!animations)) { - transitions = isString(document.body.style.webkitTransition); - animations = isString(document.body.style.webkitAnimation); - } - } - - - return { - // Android has history.pushState, but it does not update location correctly - // so let's not use the history API at all. - // http://code.google.com/p/android/issues/detail?id=17471 - // https://github.com/angular/angular.js/issues/904 - - // older webit browser (533.9) on Boxee box has exactly the same problem as Android has - // so let's not use the history API also - // We are purposefully using `!(android < 4)` to cover the case when `android` is undefined - // jshint -W018 - history: !!($window.history && $window.history.pushState && !(android < 4) && !boxee), - // jshint +W018 - hashchange: 'onhashchange' in $window && - // IE8 compatible mode lies - (!documentMode || documentMode > 7), - hasEvent: function(event) { - // IE9 implements 'input' event it's so fubared that we rather pretend that it doesn't have - // it. In particular the event is not fired when backspace or delete key are pressed or - // when cut operation is performed. - if (event == 'input' && msie == 9) return false; - - if (isUndefined(eventSupport[event])) { - var divElm = document.createElement('div'); - eventSupport[event] = 'on' + event in divElm; - } - - return eventSupport[event]; - }, - csp: csp(), - vendorPrefix: vendorPrefix, - transitions : transitions, - animations : animations, - android: android, - msie : msie, - msieDocumentMode: documentMode - }; - }]; -} - -function $TimeoutProvider() { - this.$get = ['$rootScope', '$browser', '$q', '$exceptionHandler', - function($rootScope, $browser, $q, $exceptionHandler) { - var deferreds = {}; - - - /** - * @ngdoc function - * @name ng.$timeout - * @requires $browser - * - * @description - * Angular's wrapper for `window.setTimeout`. The `fn` function is wrapped into a try/catch - * block and delegates any exceptions to - * {@link ng.$exceptionHandler $exceptionHandler} service. - * - * The return value of registering a timeout function is a promise, which will be resolved when - * the timeout is reached and the timeout function is executed. - * - * To cancel a timeout request, call `$timeout.cancel(promise)`. - * - * In tests you can use {@link ngMock.$timeout `$timeout.flush()`} to - * synchronously flush the queue of deferred functions. - * - * @param {function()} fn A function, whose execution should be delayed. - * @param {number=} [delay=0] Delay in milliseconds. - * @param {boolean=} [invokeApply=true] If set to `false` skips model dirty checking, otherwise - * will invoke `fn` within the {@link ng.$rootScope.Scope#methods_$apply $apply} block. - * @returns {Promise} Promise that will be resolved when the timeout is reached. The value this - * promise will be resolved with is the return value of the `fn` function. - * - */ - function timeout(fn, delay, invokeApply) { - var deferred = $q.defer(), - promise = deferred.promise, - skipApply = (isDefined(invokeApply) && !invokeApply), - timeoutId; - - timeoutId = $browser.defer(function() { - try { - deferred.resolve(fn()); - } catch(e) { - deferred.reject(e); - $exceptionHandler(e); - } - finally { - delete deferreds[promise.$$timeoutId]; - } - - if (!skipApply) $rootScope.$apply(); - }, delay); - - promise.$$timeoutId = timeoutId; - deferreds[timeoutId] = deferred; - - return promise; - } - - - /** - * @ngdoc function - * @name ng.$timeout#cancel - * @methodOf ng.$timeout - * - * @description - * Cancels a task associated with the `promise`. As a result of this, the promise will be - * resolved with a rejection. - * - * @param {Promise=} promise Promise returned by the `$timeout` function. - * @returns {boolean} Returns `true` if the task hasn't executed yet and was successfully - * canceled. - */ - timeout.cancel = function(promise) { - if (promise && promise.$$timeoutId in deferreds) { - deferreds[promise.$$timeoutId].reject('canceled'); - delete deferreds[promise.$$timeoutId]; - return $browser.defer.cancel(promise.$$timeoutId); - } - return false; - }; - - return timeout; - }]; -} - -// NOTE: The usage of window and document instead of $window and $document here is -// deliberate. This service depends on the specific behavior of anchor nodes created by the -// browser (resolving and parsing URLs) that is unlikely to be provided by mock objects and -// cause us to break tests. In addition, when the browser resolves a URL for XHR, it -// doesn't know about mocked locations and resolves URLs to the real document - which is -// exactly the behavior needed here. There is little value is mocking these out for this -// service. -var urlParsingNode = document.createElement("a"); -var originUrl = urlResolve(window.location.href, true); - - -/** - * - * Implementation Notes for non-IE browsers - * ---------------------------------------- - * Assigning a URL to the href property of an anchor DOM node, even one attached to the DOM, - * results both in the normalizing and parsing of the URL. Normalizing means that a relative - * URL will be resolved into an absolute URL in the context of the application document. - * Parsing means that the anchor node's host, hostname, protocol, port, pathname and related - * properties are all populated to reflect the normalized URL. This approach has wide - * compatibility - Safari 1+, Mozilla 1+, Opera 7+,e etc. See - * http://www.aptana.com/reference/html/api/HTMLAnchorElement.html - * - * Implementation Notes for IE - * --------------------------- - * IE >= 8 and <= 10 normalizes the URL when assigned to the anchor node similar to the other - * browsers. However, the parsed components will not be set if the URL assigned did not specify - * them. (e.g. if you assign a.href = "foo", then a.protocol, a.host, etc. will be empty.) We - * work around that by performing the parsing in a 2nd step by taking a previously normalized - * URL (e.g. by assigning to a.href) and assigning it a.href again. This correctly populates the - * properties such as protocol, hostname, port, etc. - * - * IE7 does not normalize the URL when assigned to an anchor node. (Apparently, it does, if one - * uses the inner HTML approach to assign the URL as part of an HTML snippet - - * http://stackoverflow.com/a/472729) However, setting img[src] does normalize the URL. - * Unfortunately, setting img[src] to something like "javascript:foo" on IE throws an exception. - * Since the primary usage for normalizing URLs is to sanitize such URLs, we can't use that - * method and IE < 8 is unsupported. - * - * References: - * http://developer.mozilla.org/en-US/docs/Web/API/HTMLAnchorElement - * http://www.aptana.com/reference/html/api/HTMLAnchorElement.html - * http://url.spec.whatwg.org/#urlutils - * https://github.com/angular/angular.js/pull/2902 - * http://james.padolsey.com/javascript/parsing-urls-with-the-dom/ - * - * @function - * @param {string} url The URL to be parsed. - * @description Normalizes and parses a URL. - * @returns {object} Returns the normalized URL as a dictionary. - * - * | member name | Description | - * |---------------|----------------| - * | href | A normalized version of the provided URL if it was not an absolute URL | - * | protocol | The protocol including the trailing colon | - * | host | The host and port (if the port is non-default) of the normalizedUrl | - * | search | The search params, minus the question mark | - * | hash | The hash string, minus the hash symbol - * | hostname | The hostname - * | port | The port, without ":" - * | pathname | The pathname, beginning with "/" - * - */ -function urlResolve(url, base) { - var href = url; - - if (msie) { - // Normalize before parse. Refer Implementation Notes on why this is - // done in two steps on IE. - urlParsingNode.setAttribute("href", href); - href = urlParsingNode.href; - } - - urlParsingNode.setAttribute('href', href); - - // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils - return { - href: urlParsingNode.href, - protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '', - host: urlParsingNode.host, - search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, '') : '', - hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '', - hostname: urlParsingNode.hostname, - port: urlParsingNode.port, - pathname: (urlParsingNode.pathname.charAt(0) === '/') - ? urlParsingNode.pathname - : '/' + urlParsingNode.pathname - }; -} - -/** - * Parse a request URL and determine whether this is a same-origin request as the application document. - * - * @param {string|object} requestUrl The url of the request as a string that will be resolved - * or a parsed URL object. - * @returns {boolean} Whether the request is for the same origin as the application document. - */ -function urlIsSameOrigin(requestUrl) { - var parsed = (isString(requestUrl)) ? urlResolve(requestUrl) : requestUrl; - return (parsed.protocol === originUrl.protocol && - parsed.host === originUrl.host); -} - -/** - * @ngdoc object - * @name ng.$window - * - * @description - * A reference to the browser's `window` object. While `window` - * is globally available in JavaScript, it causes testability problems, because - * it is a global variable. In angular we always refer to it through the - * `$window` service, so it may be overridden, removed or mocked for testing. - * - * Expressions, like the one defined for the `ngClick` directive in the example - * below, are evaluated with respect to the current scope. Therefore, there is - * no risk of inadvertently coding in a dependency on a global value in such an - * expression. - * - * @example - - - -
- - -
-
- - it('should display the greeting in the input box', function() { - input('greeting').enter('Hello, E2E Tests'); - // If we click the button it will block the test runner - // element(':button').click(); - }); - -
- */ -function $WindowProvider(){ - this.$get = valueFn(window); -} - -/** - * @ngdoc object - * @name ng.$filterProvider - * @description - * - * Filters are just functions which transform input to an output. However filters need to be - * Dependency Injected. To achieve this a filter definition consists of a factory function which is - * annotated with dependencies and is responsible for creating a filter function. - * - *
- *   // Filter registration
- *   function MyModule($provide, $filterProvider) {
- *     // create a service to demonstrate injection (not always needed)
- *     $provide.value('greet', function(name){
- *       return 'Hello ' + name + '!';
- *     });
- *
- *     // register a filter factory which uses the
- *     // greet service to demonstrate DI.
- *     $filterProvider.register('greet', function(greet){
- *       // return the filter function which uses the greet service
- *       // to generate salutation
- *       return function(text) {
- *         // filters need to be forgiving so check input validity
- *         return text && greet(text) || text;
- *       };
- *     });
- *   }
- * 
- * - * The filter function is registered with the `$injector` under the filter name suffix with - * `Filter`. - * - *
- *   it('should be the same instance', inject(
- *     function($filterProvider) {
- *       $filterProvider.register('reverse', function(){
- *         return ...;
- *       });
- *     },
- *     function($filter, reverseFilter) {
- *       expect($filter('reverse')).toBe(reverseFilter);
- *     });
- * 
- * - * - * For more information about how angular filters work, and how to create your own filters, see - * {@link guide/filter Filters} in the Angular Developer Guide. - */ -/** - * @ngdoc method - * @name ng.$filterProvider#register - * @methodOf ng.$filterProvider - * @description - * Register filter factory function. - * - * @param {String} name Name of the filter. - * @param {function} fn The filter factory function which is injectable. - */ - - -/** - * @ngdoc function - * @name ng.$filter - * @function - * @description - * Filters are used for formatting data displayed to the user. - * - * The general syntax in templates is as follows: - * - * {{ expression [| filter_name[:parameter_value] ... ] }} - * - * @param {String} name Name of the filter function to retrieve - * @return {Function} the filter function - */ -$FilterProvider.$inject = ['$provide']; -function $FilterProvider($provide) { - var suffix = 'Filter'; - - /** - * @ngdoc function - * @name ng.$controllerProvider#register - * @methodOf ng.$controllerProvider - * @param {string|Object} name Name of the filter function, or an object map of filters where - * the keys are the filter names and the values are the filter factories. - * @returns {Object} Registered filter instance, or if a map of filters was provided then a map - * of the registered filter instances. - */ - function register(name, factory) { - if(isObject(name)) { - var filters = {}; - forEach(name, function(filter, key) { - filters[key] = register(key, filter); - }); - return filters; - } else { - return $provide.factory(name + suffix, factory); - } - } - this.register = register; - - this.$get = ['$injector', function($injector) { - return function(name) { - return $injector.get(name + suffix); - }; - }]; - - //////////////////////////////////////// - - /* global - currencyFilter: false, - dateFilter: false, - filterFilter: false, - jsonFilter: false, - limitToFilter: false, - lowercaseFilter: false, - numberFilter: false, - orderByFilter: false, - uppercaseFilter: false, - */ - - register('currency', currencyFilter); - register('date', dateFilter); - register('filter', filterFilter); - register('json', jsonFilter); - register('limitTo', limitToFilter); - register('lowercase', lowercaseFilter); - register('number', numberFilter); - register('orderBy', orderByFilter); - register('uppercase', uppercaseFilter); -} - -/** - * @ngdoc filter - * @name ng.filter:filter - * @function - * - * @description - * Selects a subset of items from `array` and returns it as a new array. - * - * @param {Array} array The source array. - * @param {string|Object|function()} expression The predicate to be used for selecting items from - * `array`. - * - * Can be one of: - * - * - `string`: Predicate that results in a substring match using the value of `expression` - * string. All strings or objects with string properties in `array` that contain this string - * will be returned. The predicate can be negated by prefixing the string with `!`. - * - * - `Object`: A pattern object can be used to filter specific properties on objects contained - * by `array`. For example `{name:"M", phone:"1"}` predicate will return an array of items - * which have property `name` containing "M" and property `phone` containing "1". A special - * property name `$` can be used (as in `{$:"text"}`) to accept a match against any - * property of the object. That's equivalent to the simple substring match with a `string` - * as described above. - * - * - `function`: A predicate function can be used to write arbitrary filters. The function is - * called for each element of `array`. The final result is an array of those elements that - * the predicate returned true for. - * - * @param {function(expected, actual)|true|undefined} comparator Comparator which is used in - * determining if the expected value (from the filter expression) and actual value (from - * the object in the array) should be considered a match. - * - * Can be one of: - * - * - `function(expected, actual)`: - * The function will be given the object value and the predicate value to compare and - * should return true if the item should be included in filtered result. - * - * - `true`: A shorthand for `function(expected, actual) { return angular.equals(expected, actual)}`. - * this is essentially strict comparison of expected and actual. - * - * - `false|undefined`: A short hand for a function which will look for a substring match in case - * insensitive way. - * - * @example - - -
- - Search: - - - - - - -
NamePhone
{{friend.name}}{{friend.phone}}
-
- Any:
- Name only
- Phone only
- Equality
- - - - - - -
NamePhone
{{friend.name}}{{friend.phone}}
-
- - it('should search across all fields when filtering with a string', function() { - input('searchText').enter('m'); - expect(repeater('#searchTextResults tr', 'friend in friends').column('friend.name')). - toEqual(['Mary', 'Mike', 'Adam']); - - input('searchText').enter('76'); - expect(repeater('#searchTextResults tr', 'friend in friends').column('friend.name')). - toEqual(['John', 'Julie']); - }); - - it('should search in specific fields when filtering with a predicate object', function() { - input('search.$').enter('i'); - expect(repeater('#searchObjResults tr', 'friend in friends').column('friend.name')). - toEqual(['Mary', 'Mike', 'Julie', 'Juliette']); - }); - it('should use a equal comparison when comparator is true', function() { - input('search.name').enter('Julie'); - input('strict').check(); - expect(repeater('#searchObjResults tr', 'friend in friends').column('friend.name')). - toEqual(['Julie']); - }); - -
- */ -function filterFilter() { - return function(array, expression, comparator) { - if (!isArray(array)) return array; - - var comparatorType = typeof(comparator), - predicates = []; - - predicates.check = function(value) { - for (var j = 0; j < predicates.length; j++) { - if(!predicates[j](value)) { - return false; - } - } - return true; - }; - - if (comparatorType !== 'function') { - if (comparatorType === 'boolean' && comparator) { - comparator = function(obj, text) { - return angular.equals(obj, text); - }; - } else { - comparator = function(obj, text) { - text = (''+text).toLowerCase(); - return (''+obj).toLowerCase().indexOf(text) > -1; - }; - } - } - - var search = function(obj, text){ - if (typeof text == 'string' && text.charAt(0) === '!') { - return !search(obj, text.substr(1)); - } - switch (typeof obj) { - case "boolean": - case "number": - case "string": - return comparator(obj, text); - case "object": - switch (typeof text) { - case "object": - return comparator(obj, text); - default: - for ( var objKey in obj) { - if (objKey.charAt(0) !== '$' && search(obj[objKey], text)) { - return true; - } - } - break; - } - return false; - case "array": - for ( var i = 0; i < obj.length; i++) { - if (search(obj[i], text)) { - return true; - } - } - return false; - default: - return false; - } - }; - switch (typeof expression) { - case "boolean": - case "number": - case "string": - // Set up expression object and fall through - expression = {$:expression}; - // jshint -W086 - case "object": - // jshint +W086 - for (var key in expression) { - if (key == '$') { - (function() { - if (!expression[key]) return; - var path = key; - predicates.push(function(value) { - return search(value, expression[path]); - }); - })(); - } else { - (function() { - if (typeof(expression[key]) == 'undefined') { return; } - var path = key; - predicates.push(function(value) { - return search(getter(value,path), expression[path]); - }); - })(); - } - } - break; - case 'function': - predicates.push(expression); - break; - default: - return array; - } - var filtered = []; - for ( var j = 0; j < array.length; j++) { - var value = array[j]; - if (predicates.check(value)) { - filtered.push(value); - } - } - return filtered; - }; -} - -/** - * @ngdoc filter - * @name ng.filter:currency - * @function - * - * @description - * Formats a number as a currency (ie $1,234.56). When no currency symbol is provided, default - * symbol for current locale is used. - * - * @param {number} amount Input to filter. - * @param {string=} symbol Currency symbol or identifier to be displayed. - * @returns {string} Formatted number. - * - * - * @example - - - -
-
- default currency symbol ($): {{amount | currency}}
- custom currency identifier (USD$): {{amount | currency:"USD$"}} -
-
- - it('should init with 1234.56', function() { - expect(binding('amount | currency')).toBe('$1,234.56'); - expect(binding('amount | currency:"USD$"')).toBe('USD$1,234.56'); - }); - it('should update', function() { - input('amount').enter('-1234'); - expect(binding('amount | currency')).toBe('($1,234.00)'); - expect(binding('amount | currency:"USD$"')).toBe('(USD$1,234.00)'); - }); - -
- */ -currencyFilter.$inject = ['$locale']; -function currencyFilter($locale) { - var formats = $locale.NUMBER_FORMATS; - return function(amount, currencySymbol){ - if (isUndefined(currencySymbol)) currencySymbol = formats.CURRENCY_SYM; - return formatNumber(amount, formats.PATTERNS[1], formats.GROUP_SEP, formats.DECIMAL_SEP, 2). - replace(/\u00A4/g, currencySymbol); - }; -} - -/** - * @ngdoc filter - * @name ng.filter:number - * @function - * - * @description - * Formats a number as text. - * - * If the input is not a number an empty string is returned. - * - * @param {number|string} number Number to format. - * @param {(number|string)=} fractionSize Number of decimal places to round the number to. - * If this is not provided then the fraction size is computed from the current locale's number - * formatting pattern. In the case of the default locale, it will be 3. - * @returns {string} Number rounded to decimalPlaces and places a “,” after each third digit. - * - * @example - - - -
- Enter number:
- Default formatting: {{val | number}}
- No fractions: {{val | number:0}}
- Negative number: {{-val | number:4}} -
-
- - it('should format numbers', function() { - expect(binding('val | number')).toBe('1,234.568'); - expect(binding('val | number:0')).toBe('1,235'); - expect(binding('-val | number:4')).toBe('-1,234.5679'); - }); - - it('should update', function() { - input('val').enter('3374.333'); - expect(binding('val | number')).toBe('3,374.333'); - expect(binding('val | number:0')).toBe('3,374'); - expect(binding('-val | number:4')).toBe('-3,374.3330'); - }); - -
- */ - - -numberFilter.$inject = ['$locale']; -function numberFilter($locale) { - var formats = $locale.NUMBER_FORMATS; - return function(number, fractionSize) { - return formatNumber(number, formats.PATTERNS[0], formats.GROUP_SEP, formats.DECIMAL_SEP, - fractionSize); - }; -} - -var DECIMAL_SEP = '.'; -function formatNumber(number, pattern, groupSep, decimalSep, fractionSize) { - if (isNaN(number) || !isFinite(number)) return ''; - - var isNegative = number < 0; - number = Math.abs(number); - var numStr = number + '', - formatedText = '', - parts = []; - - var hasExponent = false; - if (numStr.indexOf('e') !== -1) { - var match = numStr.match(/([\d\.]+)e(-?)(\d+)/); - if (match && match[2] == '-' && match[3] > fractionSize + 1) { - numStr = '0'; - } else { - formatedText = numStr; - hasExponent = true; - } - } - - if (!hasExponent) { - var fractionLen = (numStr.split(DECIMAL_SEP)[1] || '').length; - - // determine fractionSize if it is not specified - if (isUndefined(fractionSize)) { - fractionSize = Math.min(Math.max(pattern.minFrac, fractionLen), pattern.maxFrac); - } - - var pow = Math.pow(10, fractionSize); - number = Math.round(number * pow) / pow; - var fraction = ('' + number).split(DECIMAL_SEP); - var whole = fraction[0]; - fraction = fraction[1] || ''; - - var i, pos = 0, - lgroup = pattern.lgSize, - group = pattern.gSize; - - if (whole.length >= (lgroup + group)) { - pos = whole.length - lgroup; - for (i = 0; i < pos; i++) { - if ((pos - i)%group === 0 && i !== 0) { - formatedText += groupSep; - } - formatedText += whole.charAt(i); - } - } - - for (i = pos; i < whole.length; i++) { - if ((whole.length - i)%lgroup === 0 && i !== 0) { - formatedText += groupSep; - } - formatedText += whole.charAt(i); - } - - // format fraction part. - while(fraction.length < fractionSize) { - fraction += '0'; - } - - if (fractionSize && fractionSize !== "0") formatedText += decimalSep + fraction.substr(0, fractionSize); - } else { - - if (fractionSize > 0 && number > -1 && number < 1) { - formatedText = number.toFixed(fractionSize); - } - } - - parts.push(isNegative ? pattern.negPre : pattern.posPre); - parts.push(formatedText); - parts.push(isNegative ? pattern.negSuf : pattern.posSuf); - return parts.join(''); -} - -function padNumber(num, digits, trim) { - var neg = ''; - if (num < 0) { - neg = '-'; - num = -num; - } - num = '' + num; - while(num.length < digits) num = '0' + num; - if (trim) - num = num.substr(num.length - digits); - return neg + num; -} - - -function dateGetter(name, size, offset, trim) { - offset = offset || 0; - return function(date) { - var value = date['get' + name](); - if (offset > 0 || value > -offset) - value += offset; - if (value === 0 && offset == -12 ) value = 12; - return padNumber(value, size, trim); - }; -} - -function dateStrGetter(name, shortForm) { - return function(date, formats) { - var value = date['get' + name](); - var get = uppercase(shortForm ? ('SHORT' + name) : name); - - return formats[get][value]; - }; -} - -function timeZoneGetter(date) { - var zone = -1 * date.getTimezoneOffset(); - var paddedZone = (zone >= 0) ? "+" : ""; - - paddedZone += padNumber(Math[zone > 0 ? 'floor' : 'ceil'](zone / 60), 2) + - padNumber(Math.abs(zone % 60), 2); - - return paddedZone; -} - -function ampmGetter(date, formats) { - return date.getHours() < 12 ? formats.AMPMS[0] : formats.AMPMS[1]; -} - -var DATE_FORMATS = { - yyyy: dateGetter('FullYear', 4), - yy: dateGetter('FullYear', 2, 0, true), - y: dateGetter('FullYear', 1), - MMMM: dateStrGetter('Month'), - MMM: dateStrGetter('Month', true), - MM: dateGetter('Month', 2, 1), - M: dateGetter('Month', 1, 1), - dd: dateGetter('Date', 2), - d: dateGetter('Date', 1), - HH: dateGetter('Hours', 2), - H: dateGetter('Hours', 1), - hh: dateGetter('Hours', 2, -12), - h: dateGetter('Hours', 1, -12), - mm: dateGetter('Minutes', 2), - m: dateGetter('Minutes', 1), - ss: dateGetter('Seconds', 2), - s: dateGetter('Seconds', 1), - // while ISO 8601 requires fractions to be prefixed with `.` or `,` - // we can be just safely rely on using `sss` since we currently don't support single or two digit fractions - sss: dateGetter('Milliseconds', 3), - EEEE: dateStrGetter('Day'), - EEE: dateStrGetter('Day', true), - a: ampmGetter, - Z: timeZoneGetter -}; - -var DATE_FORMATS_SPLIT = /((?:[^yMdHhmsaZE']+)|(?:'(?:[^']|'')*')|(?:E+|y+|M+|d+|H+|h+|m+|s+|a|Z))(.*)/, - NUMBER_STRING = /^\-?\d+$/; - -/** - * @ngdoc filter - * @name ng.filter:date - * @function - * - * @description - * Formats `date` to a string based on the requested `format`. - * - * `format` string can be composed of the following elements: - * - * * `'yyyy'`: 4 digit representation of year (e.g. AD 1 => 0001, AD 2010 => 2010) - * * `'yy'`: 2 digit representation of year, padded (00-99). (e.g. AD 2001 => 01, AD 2010 => 10) - * * `'y'`: 1 digit representation of year, e.g. (AD 1 => 1, AD 199 => 199) - * * `'MMMM'`: Month in year (January-December) - * * `'MMM'`: Month in year (Jan-Dec) - * * `'MM'`: Month in year, padded (01-12) - * * `'M'`: Month in year (1-12) - * * `'dd'`: Day in month, padded (01-31) - * * `'d'`: Day in month (1-31) - * * `'EEEE'`: Day in Week,(Sunday-Saturday) - * * `'EEE'`: Day in Week, (Sun-Sat) - * * `'HH'`: Hour in day, padded (00-23) - * * `'H'`: Hour in day (0-23) - * * `'hh'`: Hour in am/pm, padded (01-12) - * * `'h'`: Hour in am/pm, (1-12) - * * `'mm'`: Minute in hour, padded (00-59) - * * `'m'`: Minute in hour (0-59) - * * `'ss'`: Second in minute, padded (00-59) - * * `'s'`: Second in minute (0-59) - * * `'.sss' or ',sss'`: Millisecond in second, padded (000-999) - * * `'a'`: am/pm marker - * * `'Z'`: 4 digit (+sign) representation of the timezone offset (-1200-+1200) - * - * `format` string can also be one of the following predefined - * {@link guide/i18n localizable formats}: - * - * * `'medium'`: equivalent to `'MMM d, y h:mm:ss a'` for en_US locale - * (e.g. Sep 3, 2010 12:05:08 pm) - * * `'short'`: equivalent to `'M/d/yy h:mm a'` for en_US locale (e.g. 9/3/10 12:05 pm) - * * `'fullDate'`: equivalent to `'EEEE, MMMM d,y'` for en_US locale - * (e.g. Friday, September 3, 2010) - * * `'longDate'`: equivalent to `'MMMM d, y'` for en_US locale (e.g. September 3, 2010) - * * `'mediumDate'`: equivalent to `'MMM d, y'` for en_US locale (e.g. Sep 3, 2010) - * * `'shortDate'`: equivalent to `'M/d/yy'` for en_US locale (e.g. 9/3/10) - * * `'mediumTime'`: equivalent to `'h:mm:ss a'` for en_US locale (e.g. 12:05:08 pm) - * * `'shortTime'`: equivalent to `'h:mm a'` for en_US locale (e.g. 12:05 pm) - * - * `format` string can contain literal values. These need to be quoted with single quotes (e.g. - * `"h 'in the morning'"`). In order to output single quote, use two single quotes in a sequence - * (e.g. `"h 'o''clock'"`). - * - * @param {(Date|number|string)} date Date to format either as Date object, milliseconds (string or - * number) or various ISO 8601 datetime string formats (e.g. yyyy-MM-ddTHH:mm:ss.SSSZ and its - * shorter versions like yyyy-MM-ddTHH:mmZ, yyyy-MM-dd or yyyyMMddTHHmmssZ). If no timezone is - * specified in the string input, the time is considered to be in the local timezone. - * @param {string=} format Formatting rules (see Description). If not specified, - * `mediumDate` is used. - * @returns {string} Formatted string or the input if input is not recognized as date/millis. - * - * @example - - - {{1288323623006 | date:'medium'}}: - {{1288323623006 | date:'medium'}}
- {{1288323623006 | date:'yyyy-MM-dd HH:mm:ss Z'}}: - {{1288323623006 | date:'yyyy-MM-dd HH:mm:ss Z'}}
- {{1288323623006 | date:'MM/dd/yyyy @ h:mma'}}: - {{'1288323623006' | date:'MM/dd/yyyy @ h:mma'}}
-
- - it('should format date', function() { - expect(binding("1288323623006 | date:'medium'")). - toMatch(/Oct 2\d, 2010 \d{1,2}:\d{2}:\d{2} (AM|PM)/); - expect(binding("1288323623006 | date:'yyyy-MM-dd HH:mm:ss Z'")). - toMatch(/2010\-10\-2\d \d{2}:\d{2}:\d{2} (\-|\+)?\d{4}/); - expect(binding("'1288323623006' | date:'MM/dd/yyyy @ h:mma'")). - toMatch(/10\/2\d\/2010 @ \d{1,2}:\d{2}(AM|PM)/); - }); - -
- */ -dateFilter.$inject = ['$locale']; -function dateFilter($locale) { - - - var R_ISO8601_STR = /^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/; - // 1 2 3 4 5 6 7 8 9 10 11 - function jsonStringToDate(string) { - var match; - if (match = string.match(R_ISO8601_STR)) { - var date = new Date(0), - tzHour = 0, - tzMin = 0, - dateSetter = match[8] ? date.setUTCFullYear : date.setFullYear, - timeSetter = match[8] ? date.setUTCHours : date.setHours; - - if (match[9]) { - tzHour = int(match[9] + match[10]); - tzMin = int(match[9] + match[11]); - } - dateSetter.call(date, int(match[1]), int(match[2]) - 1, int(match[3])); - var h = int(match[4]||0) - tzHour; - var m = int(match[5]||0) - tzMin; - var s = int(match[6]||0); - var ms = Math.round(parseFloat('0.' + (match[7]||0)) * 1000); - timeSetter.call(date, h, m, s, ms); - return date; - } - return string; - } - - - return function(date, format) { - var text = '', - parts = [], - fn, match; - - format = format || 'mediumDate'; - format = $locale.DATETIME_FORMATS[format] || format; - if (isString(date)) { - if (NUMBER_STRING.test(date)) { - date = int(date); - } else { - date = jsonStringToDate(date); - } - } - - if (isNumber(date)) { - date = new Date(date); - } - - if (!isDate(date)) { - return date; - } - - while(format) { - match = DATE_FORMATS_SPLIT.exec(format); - if (match) { - parts = concat(parts, match, 1); - format = parts.pop(); - } else { - parts.push(format); - format = null; - } - } - - forEach(parts, function(value){ - fn = DATE_FORMATS[value]; - text += fn ? fn(date, $locale.DATETIME_FORMATS) - : value.replace(/(^'|'$)/g, '').replace(/''/g, "'"); - }); - - return text; - }; -} - - -/** - * @ngdoc filter - * @name ng.filter:json - * @function - * - * @description - * Allows you to convert a JavaScript object into JSON string. - * - * This filter is mostly useful for debugging. When using the double curly {{value}} notation - * the binding is automatically converted to JSON. - * - * @param {*} object Any JavaScript object (including arrays and primitive types) to filter. - * @returns {string} JSON string. - * - * - * @example: - - -
{{ {'name':'value'} | json }}
-
- - it('should jsonify filtered objects', function() { - expect(binding("{'name':'value'}")).toMatch(/\{\n "name": ?"value"\n}/); - }); - -
- * - */ -function jsonFilter() { - return function(object) { - return toJson(object, true); - }; -} - - -/** - * @ngdoc filter - * @name ng.filter:lowercase - * @function - * @description - * Converts string to lowercase. - * @see angular.lowercase - */ -var lowercaseFilter = valueFn(lowercase); - - -/** - * @ngdoc filter - * @name ng.filter:uppercase - * @function - * @description - * Converts string to uppercase. - * @see angular.uppercase - */ -var uppercaseFilter = valueFn(uppercase); - -/** - * @ngdoc function - * @name ng.filter:limitTo - * @function - * - * @description - * Creates a new array or string containing only a specified number of elements. The elements - * are taken from either the beginning or the end of the source array or string, as specified by - * the value and sign (positive or negative) of `limit`. - * - * @param {Array|string} input Source array or string to be limited. - * @param {string|number} limit The length of the returned array or string. If the `limit` number - * is positive, `limit` number of items from the beginning of the source array/string are copied. - * If the number is negative, `limit` number of items from the end of the source array/string - * are copied. The `limit` will be trimmed if it exceeds `array.length` - * @returns {Array|string} A new sub-array or substring of length `limit` or less if input array - * had less than `limit` elements. - * - * @example - - - -
- Limit {{numbers}} to: -

Output numbers: {{ numbers | limitTo:numLimit }}

- Limit {{letters}} to: -

Output letters: {{ letters | limitTo:letterLimit }}

-
-
- - it('should limit the number array to first three items', function() { - expect(element('.doc-example-live input[ng-model=numLimit]').val()).toBe('3'); - expect(element('.doc-example-live input[ng-model=letterLimit]').val()).toBe('3'); - expect(binding('numbers | limitTo:numLimit')).toEqual('[1,2,3]'); - expect(binding('letters | limitTo:letterLimit')).toEqual('abc'); - }); - - it('should update the output when -3 is entered', function() { - input('numLimit').enter(-3); - input('letterLimit').enter(-3); - expect(binding('numbers | limitTo:numLimit')).toEqual('[7,8,9]'); - expect(binding('letters | limitTo:letterLimit')).toEqual('ghi'); - }); - - it('should not exceed the maximum size of input array', function() { - input('numLimit').enter(100); - input('letterLimit').enter(100); - expect(binding('numbers | limitTo:numLimit')).toEqual('[1,2,3,4,5,6,7,8,9]'); - expect(binding('letters | limitTo:letterLimit')).toEqual('abcdefghi'); - }); - -
- */ -function limitToFilter(){ - return function(input, limit) { - if (!isArray(input) && !isString(input)) return input; - - limit = int(limit); - - if (isString(input)) { - //NaN check on limit - if (limit) { - return limit >= 0 ? input.slice(0, limit) : input.slice(limit, input.length); - } else { - return ""; - } - } - - var out = [], - i, n; - - // if abs(limit) exceeds maximum length, trim it - if (limit > input.length) - limit = input.length; - else if (limit < -input.length) - limit = -input.length; - - if (limit > 0) { - i = 0; - n = limit; - } else { - i = input.length + limit; - n = input.length; - } - - for (; i} expression A predicate to be - * used by the comparator to determine the order of elements. - * - * Can be one of: - * - * - `function`: Getter function. The result of this function will be sorted using the - * `<`, `=`, `>` operator. - * - `string`: An Angular expression which evaluates to an object to order by, such as 'name' - * to sort by a property called 'name'. Optionally prefixed with `+` or `-` to control - * ascending or descending sort order (for example, +name or -name). - * - `Array`: An array of function or string predicates. The first predicate in the array - * is used for sorting, but when two items are equivalent, the next predicate is used. - * - * @param {boolean=} reverse Reverse the order the array. - * @returns {Array} Sorted copy of the source array. - * - * @example - - - -
-
Sorting predicate = {{predicate}}; reverse = {{reverse}}
-
- [ unsorted ] - - - - - - - - - - - -
Name - (^)Phone NumberAge
{{friend.name}}{{friend.phone}}{{friend.age}}
-
-
- - it('should be reverse ordered by aged', function() { - expect(binding('predicate')).toBe('-age'); - expect(repeater('table.friend', 'friend in friends').column('friend.age')). - toEqual(['35', '29', '21', '19', '10']); - expect(repeater('table.friend', 'friend in friends').column('friend.name')). - toEqual(['Adam', 'Julie', 'Mike', 'Mary', 'John']); - }); - - it('should reorder the table when user selects different predicate', function() { - element('.doc-example-live a:contains("Name")').click(); - expect(repeater('table.friend', 'friend in friends').column('friend.name')). - toEqual(['Adam', 'John', 'Julie', 'Mary', 'Mike']); - expect(repeater('table.friend', 'friend in friends').column('friend.age')). - toEqual(['35', '10', '29', '19', '21']); - - element('.doc-example-live a:contains("Phone")').click(); - expect(repeater('table.friend', 'friend in friends').column('friend.phone')). - toEqual(['555-9876', '555-8765', '555-5678', '555-4321', '555-1212']); - expect(repeater('table.friend', 'friend in friends').column('friend.name')). - toEqual(['Mary', 'Julie', 'Adam', 'Mike', 'John']); - }); - -
- */ -orderByFilter.$inject = ['$parse']; -function orderByFilter($parse){ - return function(array, sortPredicate, reverseOrder) { - if (!isArray(array)) return array; - if (!sortPredicate) return array; - sortPredicate = isArray(sortPredicate) ? sortPredicate: [sortPredicate]; - sortPredicate = map(sortPredicate, function(predicate){ - var descending = false, get = predicate || identity; - if (isString(predicate)) { - if ((predicate.charAt(0) == '+' || predicate.charAt(0) == '-')) { - descending = predicate.charAt(0) == '-'; - predicate = predicate.substring(1); - } - get = $parse(predicate); - } - return reverseComparator(function(a,b){ - return compare(get(a),get(b)); - }, descending); - }); - var arrayCopy = []; - for ( var i = 0; i < array.length; i++) { arrayCopy.push(array[i]); } - return arrayCopy.sort(reverseComparator(comparator, reverseOrder)); - - function comparator(o1, o2){ - for ( var i = 0; i < sortPredicate.length; i++) { - var comp = sortPredicate[i](o1, o2); - if (comp !== 0) return comp; - } - return 0; - } - function reverseComparator(comp, descending) { - return toBoolean(descending) - ? function(a,b){return comp(b,a);} - : comp; - } - function compare(v1, v2){ - var t1 = typeof v1; - var t2 = typeof v2; - if (t1 == t2) { - if (t1 == "string") { - v1 = v1.toLowerCase(); - v2 = v2.toLowerCase(); - } - if (v1 === v2) return 0; - return v1 < v2 ? -1 : 1; - } else { - return t1 < t2 ? -1 : 1; - } - } - }; -} - -function ngDirective(directive) { - if (isFunction(directive)) { - directive = { - link: directive - }; - } - directive.restrict = directive.restrict || 'AC'; - return valueFn(directive); -} - -/** - * @ngdoc directive - * @name ng.directive:a - * @restrict E - * - * @description - * Modifies the default behavior of the html A tag so that the default action is prevented when - * the href attribute is empty. - * - * This change permits the easy creation of action links with the `ngClick` directive - * without changing the location or causing page reloads, e.g.: - * `Add Item` - */ -var htmlAnchorDirective = valueFn({ - restrict: 'E', - compile: function(element, attr) { - - if (msie <= 8) { - - // turn link into a stylable link in IE - // but only if it doesn't have name attribute, in which case it's an anchor - if (!attr.href && !attr.name) { - attr.$set('href', ''); - } - - // add a comment node to anchors to workaround IE bug that causes element content to be reset - // to new attribute content if attribute is updated with value containing @ and element also - // contains value with @ - // see issue #1949 - element.append(document.createComment('IE fix')); - } - - if (!attr.href && !attr.name) { - return function(scope, element) { - element.on('click', function(event){ - // if we have no href url, then don't navigate anywhere. - if (!element.attr('href')) { - event.preventDefault(); - } - }); - }; - } - } -}); - -/** - * @ngdoc directive - * @name ng.directive:ngHref - * @restrict A - * @priority 99 - * - * @description - * Using Angular markup like `{{hash}}` in an href attribute will - * make the link go to the wrong URL if the user clicks it before - * Angular has a chance to replace the `{{hash}}` markup with its - * value. Until Angular replaces the markup the link will be broken - * and will most likely return a 404 error. - * - * The `ngHref` directive solves this problem. - * - * The wrong way to write it: - *
- * 
- * 
- * - * The correct way to write it: - *
- * 
- * 
- * - * @element A - * @param {template} ngHref any string which can contain `{{}}` markup. - * - * @example - * This example shows various combinations of `href`, `ng-href` and `ng-click` attributes - * in links and their different behaviors: - - -
-
link 1 (link, don't reload)
- link 2 (link, don't reload)
- link 3 (link, reload!)
- anchor (link, don't reload)
- anchor (no link)
- link (link, change location) - - - it('should execute ng-click but not reload when href without value', function() { - element('#link-1').click(); - expect(input('value').val()).toEqual('1'); - expect(element('#link-1').attr('href')).toBe(""); - }); - - it('should execute ng-click but not reload when href empty string', function() { - element('#link-2').click(); - expect(input('value').val()).toEqual('2'); - expect(element('#link-2').attr('href')).toBe(""); - }); - - it('should execute ng-click and change url when ng-href specified', function() { - expect(element('#link-3').attr('href')).toBe("/123"); - - element('#link-3').click(); - expect(browser().window().path()).toEqual('/123'); - }); - - it('should execute ng-click but not reload when href empty string and name specified', function() { - element('#link-4').click(); - expect(input('value').val()).toEqual('4'); - expect(element('#link-4').attr('href')).toBe(''); - }); - - it('should execute ng-click but not reload when no href but name specified', function() { - element('#link-5').click(); - expect(input('value').val()).toEqual('5'); - expect(element('#link-5').attr('href')).toBe(undefined); - }); - - it('should only change url when only ng-href', function() { - input('value').enter('6'); - expect(element('#link-6').attr('href')).toBe('6'); - - element('#link-6').click(); - expect(browser().location().url()).toEqual('/6'); - }); - - - */ - -/** - * @ngdoc directive - * @name ng.directive:ngSrc - * @restrict A - * @priority 99 - * - * @description - * Using Angular markup like `{{hash}}` in a `src` attribute doesn't - * work right: The browser will fetch from the URL with the literal - * text `{{hash}}` until Angular replaces the expression inside - * `{{hash}}`. The `ngSrc` directive solves this problem. - * - * The buggy way to write it: - *
- * 
- * 
- * - * The correct way to write it: - *
- * 
- * 
- * - * @element IMG - * @param {template} ngSrc any string which can contain `{{}}` markup. - */ - -/** - * @ngdoc directive - * @name ng.directive:ngSrcset - * @restrict A - * @priority 99 - * - * @description - * Using Angular markup like `{{hash}}` in a `srcset` attribute doesn't - * work right: The browser will fetch from the URL with the literal - * text `{{hash}}` until Angular replaces the expression inside - * `{{hash}}`. The `ngSrcset` directive solves this problem. - * - * The buggy way to write it: - *
- * 
- * 
- * - * The correct way to write it: - *
- * 
- * 
- * - * @element IMG - * @param {template} ngSrcset any string which can contain `{{}}` markup. - */ - -/** - * @ngdoc directive - * @name ng.directive:ngDisabled - * @restrict A - * @priority 100 - * - * @description - * - * The following markup will make the button enabled on Chrome/Firefox but not on IE8 and older IEs: - *
- * 
- * - *
- *
- * - * The HTML specification does not require browsers to preserve the values of boolean attributes - * such as disabled. (Their presence means true and their absence means false.) - * If we put an Angular interpolation expression into such an attribute then the - * binding information would be lost when the browser removes the attribute. - * The `ngDisabled` directive solves this problem for the `disabled` attribute. - * This complementary directive is not removed by the browser and so provides - * a permanent reliable place to store the binding information. - * - * @example - - - Click me to toggle:
- -
- - it('should toggle button', function() { - expect(element('.doc-example-live :button').prop('disabled')).toBeFalsy(); - input('checked').check(); - expect(element('.doc-example-live :button').prop('disabled')).toBeTruthy(); - }); - -
- * - * @element INPUT - * @param {expression} ngDisabled If the {@link guide/expression expression} is truthy, - * then special attribute "disabled" will be set on the element - */ - - -/** - * @ngdoc directive - * @name ng.directive:ngChecked - * @restrict A - * @priority 100 - * - * @description - * The HTML specification does not require browsers to preserve the values of boolean attributes - * such as checked. (Their presence means true and their absence means false.) - * If we put an Angular interpolation expression into such an attribute then the - * binding information would be lost when the browser removes the attribute. - * The `ngChecked` directive solves this problem for the `checked` attribute. - * This complementary directive is not removed by the browser and so provides - * a permanent reliable place to store the binding information. - * @example - - - Check me to check both:
- -
- - it('should check both checkBoxes', function() { - expect(element('.doc-example-live #checkSlave').prop('checked')).toBeFalsy(); - input('master').check(); - expect(element('.doc-example-live #checkSlave').prop('checked')).toBeTruthy(); - }); - -
- * - * @element INPUT - * @param {expression} ngChecked If the {@link guide/expression expression} is truthy, - * then special attribute "checked" will be set on the element - */ - - -/** - * @ngdoc directive - * @name ng.directive:ngReadonly - * @restrict A - * @priority 100 - * - * @description - * The HTML specification does not require browsers to preserve the values of boolean attributes - * such as readonly. (Their presence means true and their absence means false.) - * If we put an Angular interpolation expression into such an attribute then the - * binding information would be lost when the browser removes the attribute. - * The `ngReadonly` directive solves this problem for the `readonly` attribute. - * This complementary directive is not removed by the browser and so provides - * a permanent reliable place to store the binding information. - * @example - - - Check me to make text readonly:
- -
- - it('should toggle readonly attr', function() { - expect(element('.doc-example-live :text').prop('readonly')).toBeFalsy(); - input('checked').check(); - expect(element('.doc-example-live :text').prop('readonly')).toBeTruthy(); - }); - -
- * - * @element INPUT - * @param {expression} ngReadonly If the {@link guide/expression expression} is truthy, - * then special attribute "readonly" will be set on the element - */ - - -/** - * @ngdoc directive - * @name ng.directive:ngSelected - * @restrict A - * @priority 100 - * - * @description - * The HTML specification does not require browsers to preserve the values of boolean attributes - * such as selected. (Their presence means true and their absence means false.) - * If we put an Angular interpolation expression into such an attribute then the - * binding information would be lost when the browser removes the attribute. - * The `ngSelected` directive solves this problem for the `selected` atttribute. - * This complementary directive is not removed by the browser and so provides - * a permanent reliable place to store the binding information. - * - * @example - - - Check me to select:
- -
- - it('should select Greetings!', function() { - expect(element('.doc-example-live #greet').prop('selected')).toBeFalsy(); - input('selected').check(); - expect(element('.doc-example-live #greet').prop('selected')).toBeTruthy(); - }); - -
- * - * @element OPTION - * @param {expression} ngSelected If the {@link guide/expression expression} is truthy, - * then special attribute "selected" will be set on the element - */ - -/** - * @ngdoc directive - * @name ng.directive:ngOpen - * @restrict A - * @priority 100 - * - * @description - * The HTML specification does not require browsers to preserve the values of boolean attributes - * such as open. (Their presence means true and their absence means false.) - * If we put an Angular interpolation expression into such an attribute then the - * binding information would be lost when the browser removes the attribute. - * The `ngOpen` directive solves this problem for the `open` attribute. - * This complementary directive is not removed by the browser and so provides - * a permanent reliable place to store the binding information. - * @example - - - Check me check multiple:
-
- Show/Hide me -
-
- - it('should toggle open', function() { - expect(element('#details').prop('open')).toBeFalsy(); - input('open').check(); - expect(element('#details').prop('open')).toBeTruthy(); - }); - -
- * - * @element DETAILS - * @param {expression} ngOpen If the {@link guide/expression expression} is truthy, - * then special attribute "open" will be set on the element - */ - -var ngAttributeAliasDirectives = {}; - - -// boolean attrs are evaluated -forEach(BOOLEAN_ATTR, function(propName, attrName) { - // binding to multiple is not supported - if (propName == "multiple") return; - - var normalized = directiveNormalize('ng-' + attrName); - ngAttributeAliasDirectives[normalized] = function() { - return { - priority: 100, - compile: function() { - return function(scope, element, attr) { - scope.$watch(attr[normalized], function ngBooleanAttrWatchAction(value) { - attr.$set(attrName, !!value); - }); - }; - } - }; - }; -}); - - -// ng-src, ng-srcset, ng-href are interpolated -forEach(['src', 'srcset', 'href'], function(attrName) { - var normalized = directiveNormalize('ng-' + attrName); - ngAttributeAliasDirectives[normalized] = function() { - return { - priority: 99, // it needs to run after the attributes are interpolated - link: function(scope, element, attr) { - attr.$observe(normalized, function(value) { - if (!value) - return; - - attr.$set(attrName, value); - - // on IE, if "ng:src" directive declaration is used and "src" attribute doesn't exist - // then calling element.setAttribute('src', 'foo') doesn't do anything, so we need - // to set the property as well to achieve the desired effect. - // we use attr[attrName] value since $set can sanitize the url. - if (msie) element.prop(attrName, attr[attrName]); - }); - } - }; - }; -}); - -/* global -nullFormCtrl */ -var nullFormCtrl = { - $addControl: noop, - $removeControl: noop, - $setValidity: noop, - $setDirty: noop, - $setPristine: noop -}; - -/** - * @ngdoc object - * @name ng.directive:form.FormController - * - * @property {boolean} $pristine True if user has not interacted with the form yet. - * @property {boolean} $dirty True if user has already interacted with the form. - * @property {boolean} $valid True if all of the containing forms and controls are valid. - * @property {boolean} $invalid True if at least one containing control or form is invalid. - * - * @property {Object} $error Is an object hash, containing references to all invalid controls or - * forms, where: - * - * - keys are validation tokens (error names), - * - values are arrays of controls or forms that are invalid for given error name. - * - * - * Built-in validation tokens: - * - * - `email` - * - `max` - * - `maxlength` - * - `min` - * - `minlength` - * - `number` - * - `pattern` - * - `required` - * - `url` - * - * @description - * `FormController` keeps track of all its controls and nested forms as well as state of them, - * such as being valid/invalid or dirty/pristine. - * - * Each {@link ng.directive:form form} directive creates an instance - * of `FormController`. - * - */ -//asks for $scope to fool the BC controller module -FormController.$inject = ['$element', '$attrs', '$scope']; -function FormController(element, attrs) { - var form = this, - parentForm = element.parent().controller('form') || nullFormCtrl, - invalidCount = 0, // used to easily determine if we are valid - errors = form.$error = {}, - controls = []; - - // init state - form.$name = attrs.name || attrs.ngForm; - form.$dirty = false; - form.$pristine = true; - form.$valid = true; - form.$invalid = false; - - parentForm.$addControl(form); - - // Setup initial state of the control - element.addClass(PRISTINE_CLASS); - toggleValidCss(true); - - // convenience method for easy toggling of classes - function toggleValidCss(isValid, validationErrorKey) { - validationErrorKey = validationErrorKey ? '-' + snake_case(validationErrorKey, '-') : ''; - element. - removeClass((isValid ? INVALID_CLASS : VALID_CLASS) + validationErrorKey). - addClass((isValid ? VALID_CLASS : INVALID_CLASS) + validationErrorKey); - } - - /** - * @ngdoc function - * @name ng.directive:form.FormController#$addControl - * @methodOf ng.directive:form.FormController - * - * @description - * Register a control with the form. - * - * Input elements using ngModelController do this automatically when they are linked. - */ - form.$addControl = function(control) { - // Breaking change - before, inputs whose name was "hasOwnProperty" were quietly ignored - // and not added to the scope. Now we throw an error. - assertNotHasOwnProperty(control.$name, 'input'); - controls.push(control); - - if (control.$name) { - form[control.$name] = control; - } - }; - - /** - * @ngdoc function - * @name ng.directive:form.FormController#$removeControl - * @methodOf ng.directive:form.FormController - * - * @description - * Deregister a control from the form. - * - * Input elements using ngModelController do this automatically when they are destroyed. - */ - form.$removeControl = function(control) { - if (control.$name && form[control.$name] === control) { - delete form[control.$name]; - } - forEach(errors, function(queue, validationToken) { - form.$setValidity(validationToken, true, control); - }); - - arrayRemove(controls, control); - }; - - /** - * @ngdoc function - * @name ng.directive:form.FormController#$setValidity - * @methodOf ng.directive:form.FormController - * - * @description - * Sets the validity of a form control. - * - * This method will also propagate to parent forms. - */ - form.$setValidity = function(validationToken, isValid, control) { - var queue = errors[validationToken]; - - if (isValid) { - if (queue) { - arrayRemove(queue, control); - if (!queue.length) { - invalidCount--; - if (!invalidCount) { - toggleValidCss(isValid); - form.$valid = true; - form.$invalid = false; - } - errors[validationToken] = false; - toggleValidCss(true, validationToken); - parentForm.$setValidity(validationToken, true, form); - } - } - - } else { - if (!invalidCount) { - toggleValidCss(isValid); - } - if (queue) { - if (includes(queue, control)) return; - } else { - errors[validationToken] = queue = []; - invalidCount++; - toggleValidCss(false, validationToken); - parentForm.$setValidity(validationToken, false, form); - } - queue.push(control); - - form.$valid = false; - form.$invalid = true; - } - }; - - /** - * @ngdoc function - * @name ng.directive:form.FormController#$setDirty - * @methodOf ng.directive:form.FormController - * - * @description - * Sets the form to a dirty state. - * - * This method can be called to add the 'ng-dirty' class and set the form to a dirty - * state (ng-dirty class). This method will also propagate to parent forms. - */ - form.$setDirty = function() { - element.removeClass(PRISTINE_CLASS).addClass(DIRTY_CLASS); - form.$dirty = true; - form.$pristine = false; - parentForm.$setDirty(); - }; - - /** - * @ngdoc function - * @name ng.directive:form.FormController#$setPristine - * @methodOf ng.directive:form.FormController - * - * @description - * Sets the form to its pristine state. - * - * This method can be called to remove the 'ng-dirty' class and set the form to its pristine - * state (ng-pristine class). This method will also propagate to all the controls contained - * in this form. - * - * Setting a form back to a pristine state is often useful when we want to 'reuse' a form after - * saving or resetting it. - */ - form.$setPristine = function () { - element.removeClass(DIRTY_CLASS).addClass(PRISTINE_CLASS); - form.$dirty = false; - form.$pristine = true; - forEach(controls, function(control) { - control.$setPristine(); - }); - }; -} - - -/** - * @ngdoc directive - * @name ng.directive:ngForm - * @restrict EAC - * - * @description - * Nestable alias of {@link ng.directive:form `form`} directive. HTML - * does not allow nesting of form elements. It is useful to nest forms, for example if the validity of a - * sub-group of controls needs to be determined. - * - * @param {string=} ngForm|name Name of the form. If specified, the form controller will be published into - * related scope, under this name. - * - */ - - /** - * @ngdoc directive - * @name ng.directive:form - * @restrict E - * - * @description - * Directive that instantiates - * {@link ng.directive:form.FormController FormController}. - * - * If the `name` attribute is specified, the form controller is published onto the current scope under - * this name. - * - * # Alias: {@link ng.directive:ngForm `ngForm`} - * - * In Angular forms can be nested. This means that the outer form is valid when all of the child - * forms are valid as well. However, browsers do not allow nesting of `
` elements, so - * Angular provides the {@link ng.directive:ngForm `ngForm`} directive which behaves identically to - * `` but can be nested. This allows you to have nested forms, which is very useful when - * using Angular validation directives in forms that are dynamically generated using the - * {@link ng.directive:ngRepeat `ngRepeat`} directive. Since you cannot dynamically generate the `name` - * attribute of input elements using interpolation, you have to wrap each set of repeated inputs in an - * `ngForm` directive and nest these in an outer `form` element. - * - * - * # CSS classes - * - `ng-valid` Is set if the form is valid. - * - `ng-invalid` Is set if the form is invalid. - * - `ng-pristine` Is set if the form is pristine. - * - `ng-dirty` Is set if the form is dirty. - * - * - * # Submitting a form and preventing the default action - * - * Since the role of forms in client-side Angular applications is different than in classical - * roundtrip apps, it is desirable for the browser not to translate the form submission into a full - * page reload that sends the data to the server. Instead some javascript logic should be triggered - * to handle the form submission in an application-specific way. - * - * For this reason, Angular prevents the default action (form submission to the server) unless the - * `` element has an `action` attribute specified. - * - * You can use one of the following two ways to specify what javascript method should be called when - * a form is submitted: - * - * - {@link ng.directive:ngSubmit ngSubmit} directive on the form element - * - {@link ng.directive:ngClick ngClick} directive on the first - * button or input field of type submit (input[type=submit]) - * - * To prevent double execution of the handler, use only one of the {@link ng.directive:ngSubmit ngSubmit} - * or {@link ng.directive:ngClick ngClick} directives. - * This is because of the following form submission rules in the HTML specification: - * - * - If a form has only one input field then hitting enter in this field triggers form submit - * (`ngSubmit`) - * - if a form has 2+ input fields and no buttons or input[type=submit] then hitting enter - * doesn't trigger submit - * - if a form has one or more input fields and one or more buttons or input[type=submit] then - * hitting enter in any of the input fields will trigger the click handler on the *first* button or - * input[type=submit] (`ngClick`) *and* a submit handler on the enclosing form (`ngSubmit`) - * - * @param {string=} name Name of the form. If specified, the form controller will be published into - * related scope, under this name. - * - * @example - - - - - userType: - Required!
- userType = {{userType}}
- myForm.input.$valid = {{myForm.input.$valid}}
- myForm.input.$error = {{myForm.input.$error}}
- myForm.$valid = {{myForm.$valid}}
- myForm.$error.required = {{!!myForm.$error.required}}
- -
- - it('should initialize to model', function() { - expect(binding('userType')).toEqual('guest'); - expect(binding('myForm.input.$valid')).toEqual('true'); - }); - - it('should be invalid if empty', function() { - input('userType').enter(''); - expect(binding('userType')).toEqual(''); - expect(binding('myForm.input.$valid')).toEqual('false'); - }); - -
- */ -var formDirectiveFactory = function(isNgForm) { - return ['$timeout', function($timeout) { - var formDirective = { - name: 'form', - restrict: isNgForm ? 'EAC' : 'E', - controller: FormController, - compile: function() { - return { - pre: function(scope, formElement, attr, controller) { - if (!attr.action) { - // we can't use jq events because if a form is destroyed during submission the default - // action is not prevented. see #1238 - // - // IE 9 is not affected because it doesn't fire a submit event and try to do a full - // page reload if the form was destroyed by submission of the form via a click handler - // on a button in the form. Looks like an IE9 specific bug. - var preventDefaultListener = function(event) { - event.preventDefault - ? event.preventDefault() - : event.returnValue = false; // IE - }; - - addEventListenerFn(formElement[0], 'submit', preventDefaultListener); - - // unregister the preventDefault listener so that we don't not leak memory but in a - // way that will achieve the prevention of the default action. - formElement.on('$destroy', function() { - $timeout(function() { - removeEventListenerFn(formElement[0], 'submit', preventDefaultListener); - }, 0, false); - }); - } - - var parentFormCtrl = formElement.parent().controller('form'), - alias = attr.name || attr.ngForm; - - if (alias) { - setter(scope, alias, controller, alias); - } - if (parentFormCtrl) { - formElement.on('$destroy', function() { - parentFormCtrl.$removeControl(controller); - if (alias) { - setter(scope, alias, undefined, alias); - } - extend(controller, nullFormCtrl); //stop propagating child destruction handlers upwards - }); - } - } - }; - } - }; - - return formDirective; - }]; -}; - -var formDirective = formDirectiveFactory(); -var ngFormDirective = formDirectiveFactory(true); - -/* global - - -VALID_CLASS, - -INVALID_CLASS, - -PRISTINE_CLASS, - -DIRTY_CLASS -*/ - -var URL_REGEXP = /^(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?$/; -var EMAIL_REGEXP = /^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,6}$/; -var NUMBER_REGEXP = /^\s*(\-|\+)?(\d+|(\d*(\.\d*)))\s*$/; - -var inputType = { - - /** - * @ngdoc inputType - * @name ng.directive:input.text - * - * @description - * Standard HTML text input with angular data binding. - * - * @param {string} ngModel Assignable angular expression to data-bind to. - * @param {string=} name Property name of the form under which the control is published. - * @param {string=} required Adds `required` validation error key if the value is not entered. - * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to - * the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of - * `required` when you want to data-bind to the `required` attribute. - * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than - * minlength. - * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than - * maxlength. - * @param {string=} ngPattern Sets `pattern` validation error key if the value does not match the - * RegExp pattern expression. Expected value is `/regexp/` for inline patterns or `regexp` for - * patterns defined as scope expressions. - * @param {string=} ngChange Angular expression to be executed when input changes due to user - * interaction with the input element. - * @param {boolean=} [ngTrim=true] If set to false Angular will not automatically trim the input. - * - * @example - - - -
- Single word: - - Required! - - Single word only! - - text = {{text}}
- myForm.input.$valid = {{myForm.input.$valid}}
- myForm.input.$error = {{myForm.input.$error}}
- myForm.$valid = {{myForm.$valid}}
- myForm.$error.required = {{!!myForm.$error.required}}
-
-
- - it('should initialize to model', function() { - expect(binding('text')).toEqual('guest'); - expect(binding('myForm.input.$valid')).toEqual('true'); - }); - - it('should be invalid if empty', function() { - input('text').enter(''); - expect(binding('text')).toEqual(''); - expect(binding('myForm.input.$valid')).toEqual('false'); - }); - - it('should be invalid if multi word', function() { - input('text').enter('hello world'); - expect(binding('myForm.input.$valid')).toEqual('false'); - }); - - it('should not be trimmed', function() { - input('text').enter('untrimmed '); - expect(binding('text')).toEqual('untrimmed '); - expect(binding('myForm.input.$valid')).toEqual('true'); - }); - -
- */ - 'text': textInputType, - - - /** - * @ngdoc inputType - * @name ng.directive:input.number - * - * @description - * Text input with number validation and transformation. Sets the `number` validation - * error if not a valid number. - * - * @param {string} ngModel Assignable angular expression to data-bind to. - * @param {string=} name Property name of the form under which the control is published. - * @param {string=} min Sets the `min` validation error key if the value entered is less than `min`. - * @param {string=} max Sets the `max` validation error key if the value entered is greater than `max`. - * @param {string=} required Sets `required` validation error key if the value is not entered. - * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to - * the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of - * `required` when you want to data-bind to the `required` attribute. - * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than - * minlength. - * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than - * maxlength. - * @param {string=} ngPattern Sets `pattern` validation error key if the value does not match the - * RegExp pattern expression. Expected value is `/regexp/` for inline patterns or `regexp` for - * patterns defined as scope expressions. - * @param {string=} ngChange Angular expression to be executed when input changes due to user - * interaction with the input element. - * - * @example - - - -
- Number: - - Required! - - Not valid number! - value = {{value}}
- myForm.input.$valid = {{myForm.input.$valid}}
- myForm.input.$error = {{myForm.input.$error}}
- myForm.$valid = {{myForm.$valid}}
- myForm.$error.required = {{!!myForm.$error.required}}
-
-
- - it('should initialize to model', function() { - expect(binding('value')).toEqual('12'); - expect(binding('myForm.input.$valid')).toEqual('true'); - }); - - it('should be invalid if empty', function() { - input('value').enter(''); - expect(binding('value')).toEqual(''); - expect(binding('myForm.input.$valid')).toEqual('false'); - }); - - it('should be invalid if over max', function() { - input('value').enter('123'); - expect(binding('value')).toEqual(''); - expect(binding('myForm.input.$valid')).toEqual('false'); - }); - -
- */ - 'number': numberInputType, - - - /** - * @ngdoc inputType - * @name ng.directive:input.url - * - * @description - * Text input with URL validation. Sets the `url` validation error key if the content is not a - * valid URL. - * - * @param {string} ngModel Assignable angular expression to data-bind to. - * @param {string=} name Property name of the form under which the control is published. - * @param {string=} required Sets `required` validation error key if the value is not entered. - * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to - * the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of - * `required` when you want to data-bind to the `required` attribute. - * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than - * minlength. - * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than - * maxlength. - * @param {string=} ngPattern Sets `pattern` validation error key if the value does not match the - * RegExp pattern expression. Expected value is `/regexp/` for inline patterns or `regexp` for - * patterns defined as scope expressions. - * @param {string=} ngChange Angular expression to be executed when input changes due to user - * interaction with the input element. - * - * @example - - - -
- URL: - - Required! - - Not valid url! - text = {{text}}
- myForm.input.$valid = {{myForm.input.$valid}}
- myForm.input.$error = {{myForm.input.$error}}
- myForm.$valid = {{myForm.$valid}}
- myForm.$error.required = {{!!myForm.$error.required}}
- myForm.$error.url = {{!!myForm.$error.url}}
-
-
- - it('should initialize to model', function() { - expect(binding('text')).toEqual('http://google.com'); - expect(binding('myForm.input.$valid')).toEqual('true'); - }); - - it('should be invalid if empty', function() { - input('text').enter(''); - expect(binding('text')).toEqual(''); - expect(binding('myForm.input.$valid')).toEqual('false'); - }); - - it('should be invalid if not url', function() { - input('text').enter('xxx'); - expect(binding('myForm.input.$valid')).toEqual('false'); - }); - -
- */ - 'url': urlInputType, - - - /** - * @ngdoc inputType - * @name ng.directive:input.email - * - * @description - * Text input with email validation. Sets the `email` validation error key if not a valid email - * address. - * - * @param {string} ngModel Assignable angular expression to data-bind to. - * @param {string=} name Property name of the form under which the control is published. - * @param {string=} required Sets `required` validation error key if the value is not entered. - * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to - * the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of - * `required` when you want to data-bind to the `required` attribute. - * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than - * minlength. - * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than - * maxlength. - * @param {string=} ngPattern Sets `pattern` validation error key if the value does not match the - * RegExp pattern expression. Expected value is `/regexp/` for inline patterns or `regexp` for - * patterns defined as scope expressions. - * @param {string=} ngChange Angular expression to be executed when input changes due to user - * interaction with the input element. - * - * @example - - - -
- Email: - - Required! - - Not valid email! - text = {{text}}
- myForm.input.$valid = {{myForm.input.$valid}}
- myForm.input.$error = {{myForm.input.$error}}
- myForm.$valid = {{myForm.$valid}}
- myForm.$error.required = {{!!myForm.$error.required}}
- myForm.$error.email = {{!!myForm.$error.email}}
-
-
- - it('should initialize to model', function() { - expect(binding('text')).toEqual('me@example.com'); - expect(binding('myForm.input.$valid')).toEqual('true'); - }); - - it('should be invalid if empty', function() { - input('text').enter(''); - expect(binding('text')).toEqual(''); - expect(binding('myForm.input.$valid')).toEqual('false'); - }); - - it('should be invalid if not email', function() { - input('text').enter('xxx'); - expect(binding('myForm.input.$valid')).toEqual('false'); - }); - -
- */ - 'email': emailInputType, - - - /** - * @ngdoc inputType - * @name ng.directive:input.radio - * - * @description - * HTML radio button. - * - * @param {string} ngModel Assignable angular expression to data-bind to. - * @param {string} value The value to which the expression should be set when selected. - * @param {string=} name Property name of the form under which the control is published. - * @param {string=} ngChange Angular expression to be executed when input changes due to user - * interaction with the input element. - * - * @example - - - -
- Red
- Green
- Blue
- color = {{color}}
-
-
- - it('should change state', function() { - expect(binding('color')).toEqual('blue'); - - input('color').select('red'); - expect(binding('color')).toEqual('red'); - }); - -
- */ - 'radio': radioInputType, - - - /** - * @ngdoc inputType - * @name ng.directive:input.checkbox - * - * @description - * HTML checkbox. - * - * @param {string} ngModel Assignable angular expression to data-bind to. - * @param {string=} name Property name of the form under which the control is published. - * @param {string=} ngTrueValue The value to which the expression should be set when selected. - * @param {string=} ngFalseValue The value to which the expression should be set when not selected. - * @param {string=} ngChange Angular expression to be executed when input changes due to user - * interaction with the input element. - * - * @example - - - -
- Value1:
- Value2:
- value1 = {{value1}}
- value2 = {{value2}}
-
-
- - it('should change state', function() { - expect(binding('value1')).toEqual('true'); - expect(binding('value2')).toEqual('YES'); - - input('value1').check(); - input('value2').check(); - expect(binding('value1')).toEqual('false'); - expect(binding('value2')).toEqual('NO'); - }); - -
- */ - 'checkbox': checkboxInputType, - - 'hidden': noop, - 'button': noop, - 'submit': noop, - 'reset': noop -}; - - -function textInputType(scope, element, attr, ctrl, $sniffer, $browser) { - // In composition mode, users are still inputing intermediate text buffer, - // hold the listener until composition is done. - // More about composition events: https://developer.mozilla.org/en-US/docs/Web/API/CompositionEvent - if (!$sniffer.android) { - var composing = false; - - element.on('compositionstart', function(data) { - composing = true; - }); - - element.on('compositionend', function() { - composing = false; - }); - } - - var listener = function() { - if (composing) return; - var value = element.val(); - - // By default we will trim the value - // If the attribute ng-trim exists we will avoid trimming - // e.g. - if (toBoolean(attr.ngTrim || 'T')) { - value = trim(value); - } - - if (ctrl.$viewValue !== value) { - scope.$apply(function() { - ctrl.$setViewValue(value); - }); - } - }; - - // if the browser does support "input" event, we are fine - except on IE9 which doesn't fire the - // input event on backspace, delete or cut - if ($sniffer.hasEvent('input')) { - element.on('input', listener); - } else { - var timeout; - - var deferListener = function() { - if (!timeout) { - timeout = $browser.defer(function() { - listener(); - timeout = null; - }); - } - }; - - element.on('keydown', function(event) { - var key = event.keyCode; - - // ignore - // command modifiers arrows - if (key === 91 || (15 < key && key < 19) || (37 <= key && key <= 40)) return; - - deferListener(); - }); - - // if user modifies input value using context menu in IE, we need "paste" and "cut" events to catch it - if ($sniffer.hasEvent('paste')) { - element.on('paste cut', deferListener); - } - } - - // if user paste into input using mouse on older browser - // or form autocomplete on newer browser, we need "change" event to catch it - element.on('change', listener); - - ctrl.$render = function() { - element.val(ctrl.$isEmpty(ctrl.$viewValue) ? '' : ctrl.$viewValue); - }; - - // pattern validator - var pattern = attr.ngPattern, - patternValidator, - match; - - var validate = function(regexp, value) { - if (ctrl.$isEmpty(value) || regexp.test(value)) { - ctrl.$setValidity('pattern', true); - return value; - } else { - ctrl.$setValidity('pattern', false); - return undefined; - } - }; - - if (pattern) { - match = pattern.match(/^\/(.*)\/([gim]*)$/); - if (match) { - pattern = new RegExp(match[1], match[2]); - patternValidator = function(value) { - return validate(pattern, value); - }; - } else { - patternValidator = function(value) { - var patternObj = scope.$eval(pattern); - - if (!patternObj || !patternObj.test) { - throw minErr('ngPattern')('noregexp', - 'Expected {0} to be a RegExp but was {1}. Element: {2}', pattern, - patternObj, startingTag(element)); - } - return validate(patternObj, value); - }; - } - - ctrl.$formatters.push(patternValidator); - ctrl.$parsers.push(patternValidator); - } - - // min length validator - if (attr.ngMinlength) { - var minlength = int(attr.ngMinlength); - var minLengthValidator = function(value) { - if (!ctrl.$isEmpty(value) && value.length < minlength) { - ctrl.$setValidity('minlength', false); - return undefined; - } else { - ctrl.$setValidity('minlength', true); - return value; - } - }; - - ctrl.$parsers.push(minLengthValidator); - ctrl.$formatters.push(minLengthValidator); - } - - // max length validator - if (attr.ngMaxlength) { - var maxlength = int(attr.ngMaxlength); - var maxLengthValidator = function(value) { - if (!ctrl.$isEmpty(value) && value.length > maxlength) { - ctrl.$setValidity('maxlength', false); - return undefined; - } else { - ctrl.$setValidity('maxlength', true); - return value; - } - }; - - ctrl.$parsers.push(maxLengthValidator); - ctrl.$formatters.push(maxLengthValidator); - } -} - -function numberInputType(scope, element, attr, ctrl, $sniffer, $browser) { - textInputType(scope, element, attr, ctrl, $sniffer, $browser); - - ctrl.$parsers.push(function(value) { - var empty = ctrl.$isEmpty(value); - if (empty || NUMBER_REGEXP.test(value)) { - ctrl.$setValidity('number', true); - return value === '' ? null : (empty ? value : parseFloat(value)); - } else { - ctrl.$setValidity('number', false); - return undefined; - } - }); - - ctrl.$formatters.push(function(value) { - return ctrl.$isEmpty(value) ? '' : '' + value; - }); - - if (attr.min) { - var minValidator = function(value) { - var min = parseFloat(attr.min); - if (!ctrl.$isEmpty(value) && value < min) { - ctrl.$setValidity('min', false); - return undefined; - } else { - ctrl.$setValidity('min', true); - return value; - } - }; - - ctrl.$parsers.push(minValidator); - ctrl.$formatters.push(minValidator); - } - - if (attr.max) { - var maxValidator = function(value) { - var max = parseFloat(attr.max); - if (!ctrl.$isEmpty(value) && value > max) { - ctrl.$setValidity('max', false); - return undefined; - } else { - ctrl.$setValidity('max', true); - return value; - } - }; - - ctrl.$parsers.push(maxValidator); - ctrl.$formatters.push(maxValidator); - } - - ctrl.$formatters.push(function(value) { - - if (ctrl.$isEmpty(value) || isNumber(value)) { - ctrl.$setValidity('number', true); - return value; - } else { - ctrl.$setValidity('number', false); - return undefined; - } - }); -} - -function urlInputType(scope, element, attr, ctrl, $sniffer, $browser) { - textInputType(scope, element, attr, ctrl, $sniffer, $browser); - - var urlValidator = function(value) { - if (ctrl.$isEmpty(value) || URL_REGEXP.test(value)) { - ctrl.$setValidity('url', true); - return value; - } else { - ctrl.$setValidity('url', false); - return undefined; - } - }; - - ctrl.$formatters.push(urlValidator); - ctrl.$parsers.push(urlValidator); -} - -function emailInputType(scope, element, attr, ctrl, $sniffer, $browser) { - textInputType(scope, element, attr, ctrl, $sniffer, $browser); - - var emailValidator = function(value) { - if (ctrl.$isEmpty(value) || EMAIL_REGEXP.test(value)) { - ctrl.$setValidity('email', true); - return value; - } else { - ctrl.$setValidity('email', false); - return undefined; - } - }; - - ctrl.$formatters.push(emailValidator); - ctrl.$parsers.push(emailValidator); -} - -function radioInputType(scope, element, attr, ctrl) { - // make the name unique, if not defined - if (isUndefined(attr.name)) { - element.attr('name', nextUid()); - } - - element.on('click', function() { - if (element[0].checked) { - scope.$apply(function() { - ctrl.$setViewValue(attr.value); - }); - } - }); - - ctrl.$render = function() { - var value = attr.value; - element[0].checked = (value == ctrl.$viewValue); - }; - - attr.$observe('value', ctrl.$render); -} - -function checkboxInputType(scope, element, attr, ctrl) { - var trueValue = attr.ngTrueValue, - falseValue = attr.ngFalseValue; - - if (!isString(trueValue)) trueValue = true; - if (!isString(falseValue)) falseValue = false; - - element.on('click', function() { - scope.$apply(function() { - ctrl.$setViewValue(element[0].checked); - }); - }); - - ctrl.$render = function() { - element[0].checked = ctrl.$viewValue; - }; - - // Override the standard `$isEmpty` because a value of `false` means empty in a checkbox. - ctrl.$isEmpty = function(value) { - return value !== trueValue; - }; - - ctrl.$formatters.push(function(value) { - return value === trueValue; - }); - - ctrl.$parsers.push(function(value) { - return value ? trueValue : falseValue; - }); -} - - -/** - * @ngdoc directive - * @name ng.directive:textarea - * @restrict E - * - * @description - * HTML textarea element control with angular data-binding. The data-binding and validation - * properties of this element are exactly the same as those of the - * {@link ng.directive:input input element}. - * - * @param {string} ngModel Assignable angular expression to data-bind to. - * @param {string=} name Property name of the form under which the control is published. - * @param {string=} required Sets `required` validation error key if the value is not entered. - * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to - * the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of - * `required` when you want to data-bind to the `required` attribute. - * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than - * minlength. - * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than - * maxlength. - * @param {string=} ngPattern Sets `pattern` validation error key if the value does not match the - * RegExp pattern expression. Expected value is `/regexp/` for inline patterns or `regexp` for - * patterns defined as scope expressions. - * @param {string=} ngChange Angular expression to be executed when input changes due to user - * interaction with the input element. - */ - - -/** - * @ngdoc directive - * @name ng.directive:input - * @restrict E - * - * @description - * HTML input element control with angular data-binding. Input control follows HTML5 input types - * and polyfills the HTML5 validation behavior for older browsers. - * - * @param {string} ngModel Assignable angular expression to data-bind to. - * @param {string=} name Property name of the form under which the control is published. - * @param {string=} required Sets `required` validation error key if the value is not entered. - * @param {boolean=} ngRequired Sets `required` attribute if set to true - * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than - * minlength. - * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than - * maxlength. - * @param {string=} ngPattern Sets `pattern` validation error key if the value does not match the - * RegExp pattern expression. Expected value is `/regexp/` for inline patterns or `regexp` for - * patterns defined as scope expressions. - * @param {string=} ngChange Angular expression to be executed when input changes due to user - * interaction with the input element. - * - * @example - - - -
-
- User name: - - Required!
- Last name: - - Too short! - - Too long!
-
-
- user = {{user}}
- myForm.userName.$valid = {{myForm.userName.$valid}}
- myForm.userName.$error = {{myForm.userName.$error}}
- myForm.lastName.$valid = {{myForm.lastName.$valid}}
- myForm.lastName.$error = {{myForm.lastName.$error}}
- myForm.$valid = {{myForm.$valid}}
- myForm.$error.required = {{!!myForm.$error.required}}
- myForm.$error.minlength = {{!!myForm.$error.minlength}}
- myForm.$error.maxlength = {{!!myForm.$error.maxlength}}
-
-
- - it('should initialize to model', function() { - expect(binding('user')).toEqual('{"name":"guest","last":"visitor"}'); - expect(binding('myForm.userName.$valid')).toEqual('true'); - expect(binding('myForm.$valid')).toEqual('true'); - }); - - it('should be invalid if empty when required', function() { - input('user.name').enter(''); - expect(binding('user')).toEqual('{"last":"visitor"}'); - expect(binding('myForm.userName.$valid')).toEqual('false'); - expect(binding('myForm.$valid')).toEqual('false'); - }); - - it('should be valid if empty when min length is set', function() { - input('user.last').enter(''); - expect(binding('user')).toEqual('{"name":"guest","last":""}'); - expect(binding('myForm.lastName.$valid')).toEqual('true'); - expect(binding('myForm.$valid')).toEqual('true'); - }); - - it('should be invalid if less than required min length', function() { - input('user.last').enter('xx'); - expect(binding('user')).toEqual('{"name":"guest"}'); - expect(binding('myForm.lastName.$valid')).toEqual('false'); - expect(binding('myForm.lastName.$error')).toMatch(/minlength/); - expect(binding('myForm.$valid')).toEqual('false'); - }); - - it('should be invalid if longer than max length', function() { - input('user.last').enter('some ridiculously long name'); - expect(binding('user')) - .toEqual('{"name":"guest"}'); - expect(binding('myForm.lastName.$valid')).toEqual('false'); - expect(binding('myForm.lastName.$error')).toMatch(/maxlength/); - expect(binding('myForm.$valid')).toEqual('false'); - }); - -
- */ -var inputDirective = ['$browser', '$sniffer', function($browser, $sniffer) { - return { - restrict: 'E', - require: '?ngModel', - link: function(scope, element, attr, ctrl) { - if (ctrl) { - (inputType[lowercase(attr.type)] || inputType.text)(scope, element, attr, ctrl, $sniffer, - $browser); - } - } - }; -}]; - -var VALID_CLASS = 'ng-valid', - INVALID_CLASS = 'ng-invalid', - PRISTINE_CLASS = 'ng-pristine', - DIRTY_CLASS = 'ng-dirty'; - -/** - * @ngdoc object - * @name ng.directive:ngModel.NgModelController - * - * @property {string} $viewValue Actual string value in the view. - * @property {*} $modelValue The value in the model, that the control is bound to. - * @property {Array.} $parsers Array of functions to execute, as a pipeline, whenever - the control reads value from the DOM. Each function is called, in turn, passing the value - through to the next. Used to sanitize / convert the value as well as validation. - For validation, the parsers should update the validity state using - {@link ng.directive:ngModel.NgModelController#methods_$setValidity $setValidity()}, - and return `undefined` for invalid values. - - * - * @property {Array.} $formatters Array of functions to execute, as a pipeline, whenever - the model value changes. Each function is called, in turn, passing the value through to the - next. Used to format / convert values for display in the control and validation. - *
- *      function formatter(value) {
- *        if (value) {
- *          return value.toUpperCase();
- *        }
- *      }
- *      ngModel.$formatters.push(formatter);
- *      
- * - * @property {Array.} $viewChangeListeners Array of functions to execute whenever the - * view value has changed. It is called with no arguments, and its return value is ignored. - * This can be used in place of additional $watches against the model value. - * - * @property {Object} $error An object hash with all errors as keys. - * - * @property {boolean} $pristine True if user has not interacted with the control yet. - * @property {boolean} $dirty True if user has already interacted with the control. - * @property {boolean} $valid True if there is no error. - * @property {boolean} $invalid True if at least one error on the control. - * - * @description - * - * `NgModelController` provides API for the `ng-model` directive. The controller contains - * services for data-binding, validation, CSS updates, and value formatting and parsing. It - * purposefully does not contain any logic which deals with DOM rendering or listening to - * DOM events. Such DOM related logic should be provided by other directives which make use of - * `NgModelController` for data-binding. - * - * ## Custom Control Example - * This example shows how to use `NgModelController` with a custom control to achieve - * data-binding. Notice how different directives (`contenteditable`, `ng-model`, and `required`) - * collaborate together to achieve the desired result. - * - * Note that `contenteditable` is an HTML5 attribute, which tells the browser to let the element - * contents be edited in place by the user. This will not work on older browsers. - * - * - - [contenteditable] { - border: 1px solid black; - background-color: white; - min-height: 20px; - } - - .ng-invalid { - border: 1px solid red; - } - - - - angular.module('customControl', []). - directive('contenteditable', function() { - return { - restrict: 'A', // only activate on element attribute - require: '?ngModel', // get a hold of NgModelController - link: function(scope, element, attrs, ngModel) { - if(!ngModel) return; // do nothing if no ng-model - - // Specify how UI should be updated - ngModel.$render = function() { - element.html(ngModel.$viewValue || ''); - }; - - // Listen for change events to enable binding - element.on('blur keyup change', function() { - scope.$apply(read); - }); - read(); // initialize - - // Write data to the model - function read() { - var html = element.html(); - // When we clear the content editable the browser leaves a
behind - // If strip-br attribute is provided then we strip this out - if( attrs.stripBr && html == '
' ) { - html = ''; - } - ngModel.$setViewValue(html); - } - } - }; - }); -
- -
-
Change me!
- Required! -
- -
-
- - it('should data-bind and become invalid', function() { - var contentEditable = element('[contenteditable]'); - - expect(contentEditable.text()).toEqual('Change me!'); - input('userContent').enter(''); - expect(contentEditable.text()).toEqual(''); - expect(contentEditable.prop('className')).toMatch(/ng-invalid-required/); - }); - - *
- * - * - */ -var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$parse', - function($scope, $exceptionHandler, $attr, $element, $parse) { - this.$viewValue = Number.NaN; - this.$modelValue = Number.NaN; - this.$parsers = []; - this.$formatters = []; - this.$viewChangeListeners = []; - this.$pristine = true; - this.$dirty = false; - this.$valid = true; - this.$invalid = false; - this.$name = $attr.name; - - var ngModelGet = $parse($attr.ngModel), - ngModelSet = ngModelGet.assign; - - if (!ngModelSet) { - throw minErr('ngModel')('nonassign', "Expression '{0}' is non-assignable. Element: {1}", - $attr.ngModel, startingTag($element)); - } - - /** - * @ngdoc function - * @name ng.directive:ngModel.NgModelController#$render - * @methodOf ng.directive:ngModel.NgModelController - * - * @description - * Called when the view needs to be updated. It is expected that the user of the ng-model - * directive will implement this method. - */ - this.$render = noop; - - /** - * @ngdoc function - * @name { ng.directive:ngModel.NgModelController#$isEmpty - * @methodOf ng.directive:ngModel.NgModelController - * - * @description - * This is called when we need to determine if the value of the input is empty. - * - * For instance, the required directive does this to work out if the input has data or not. - * The default `$isEmpty` function checks whether the value is `undefined`, `''`, `null` or `NaN`. - * - * You can override this for input directives whose concept of being empty is different to the - * default. The `checkboxInputType` directive does this because in its case a value of `false` - * implies empty. - */ - this.$isEmpty = function(value) { - return isUndefined(value) || value === '' || value === null || value !== value; - }; - - var parentForm = $element.inheritedData('$formController') || nullFormCtrl, - invalidCount = 0, // used to easily determine if we are valid - $error = this.$error = {}; // keep invalid keys here - - - // Setup initial state of the control - $element.addClass(PRISTINE_CLASS); - toggleValidCss(true); - - // convenience method for easy toggling of classes - function toggleValidCss(isValid, validationErrorKey) { - validationErrorKey = validationErrorKey ? '-' + snake_case(validationErrorKey, '-') : ''; - $element. - removeClass((isValid ? INVALID_CLASS : VALID_CLASS) + validationErrorKey). - addClass((isValid ? VALID_CLASS : INVALID_CLASS) + validationErrorKey); - } - - /** - * @ngdoc function - * @name ng.directive:ngModel.NgModelController#$setValidity - * @methodOf ng.directive:ngModel.NgModelController - * - * @description - * Change the validity state, and notifies the form when the control changes validity. (i.e. it - * does not notify form if given validator is already marked as invalid). - * - * This method should be called by validators - i.e. the parser or formatter functions. - * - * @param {string} validationErrorKey Name of the validator. the `validationErrorKey` will assign - * to `$error[validationErrorKey]=isValid` so that it is available for data-binding. - * The `validationErrorKey` should be in camelCase and will get converted into dash-case - * for class name. Example: `myError` will result in `ng-valid-my-error` and `ng-invalid-my-error` - * class and can be bound to as `{{someForm.someControl.$error.myError}}` . - * @param {boolean} isValid Whether the current state is valid (true) or invalid (false). - */ - this.$setValidity = function(validationErrorKey, isValid) { - // Purposeful use of ! here to cast isValid to boolean in case it is undefined - // jshint -W018 - if ($error[validationErrorKey] === !isValid) return; - // jshint +W018 - - if (isValid) { - if ($error[validationErrorKey]) invalidCount--; - if (!invalidCount) { - toggleValidCss(true); - this.$valid = true; - this.$invalid = false; - } - } else { - toggleValidCss(false); - this.$invalid = true; - this.$valid = false; - invalidCount++; - } - - $error[validationErrorKey] = !isValid; - toggleValidCss(isValid, validationErrorKey); - - parentForm.$setValidity(validationErrorKey, isValid, this); - }; - - /** - * @ngdoc function - * @name ng.directive:ngModel.NgModelController#$setPristine - * @methodOf ng.directive:ngModel.NgModelController - * - * @description - * Sets the control to its pristine state. - * - * This method can be called to remove the 'ng-dirty' class and set the control to its pristine - * state (ng-pristine class). - */ - this.$setPristine = function () { - this.$dirty = false; - this.$pristine = true; - $element.removeClass(DIRTY_CLASS).addClass(PRISTINE_CLASS); - }; - - /** - * @ngdoc function - * @name ng.directive:ngModel.NgModelController#$setViewValue - * @methodOf ng.directive:ngModel.NgModelController - * - * @description - * Update the view value. - * - * This method should be called when the view value changes, typically from within a DOM event handler. - * For example {@link ng.directive:input input} and - * {@link ng.directive:select select} directives call it. - * - * It will update the $viewValue, then pass this value through each of the functions in `$parsers`, - * which includes any validators. The value that comes out of this `$parsers` pipeline, be applied to - * `$modelValue` and the **expression** specified in the `ng-model` attribute. - * - * Lastly, all the registered change listeners, in the `$viewChangeListeners` list, are called. - * - * Note that calling this function does not trigger a `$digest`. - * - * @param {string} value Value from the view. - */ - this.$setViewValue = function(value) { - this.$viewValue = value; - - // change to dirty - if (this.$pristine) { - this.$dirty = true; - this.$pristine = false; - $element.removeClass(PRISTINE_CLASS).addClass(DIRTY_CLASS); - parentForm.$setDirty(); - } - - forEach(this.$parsers, function(fn) { - value = fn(value); - }); - - if (this.$modelValue !== value) { - this.$modelValue = value; - ngModelSet($scope, value); - forEach(this.$viewChangeListeners, function(listener) { - try { - listener(); - } catch(e) { - $exceptionHandler(e); - } - }); - } - }; - - // model -> value - var ctrl = this; - - $scope.$watch(function ngModelWatch() { - var value = ngModelGet($scope); - - // if scope model value and ngModel value are out of sync - if (ctrl.$modelValue !== value) { - - var formatters = ctrl.$formatters, - idx = formatters.length; - - ctrl.$modelValue = value; - while(idx--) { - value = formatters[idx](value); - } - - if (ctrl.$viewValue !== value) { - ctrl.$viewValue = value; - ctrl.$render(); - } - } - - return value; - }); -}]; - - -/** - * @ngdoc directive - * @name ng.directive:ngModel - * - * @element input - * - * @description - * The `ngModel` directive binds an `input`,`select`, `textarea` (or custom form control) to a - * property on the scope using {@link ng.directive:ngModel.NgModelController NgModelController}, - * which is created and exposed by this directive. - * - * `ngModel` is responsible for: - * - * - Binding the view into the model, which other directives such as `input`, `textarea` or `select` - * require. - * - Providing validation behavior (i.e. required, number, email, url). - * - Keeping the state of the control (valid/invalid, dirty/pristine, validation errors). - * - Setting related css classes on the element (`ng-valid`, `ng-invalid`, `ng-dirty`, `ng-pristine`). - * - Registering the control with its parent {@link ng.directive:form form}. - * - * Note: `ngModel` will try to bind to the property given by evaluating the expression on the - * current scope. If the property doesn't already exist on this scope, it will be created - * implicitly and added to the scope. - * - * For best practices on using `ngModel`, see: - * - * - {@link https://github.com/angular/angular.js/wiki/Understanding-Scopes} - * - * For basic examples, how to use `ngModel`, see: - * - * - {@link ng.directive:input input} - * - {@link ng.directive:input.text text} - * - {@link ng.directive:input.checkbox checkbox} - * - {@link ng.directive:input.radio radio} - * - {@link ng.directive:input.number number} - * - {@link ng.directive:input.email email} - * - {@link ng.directive:input.url url} - * - {@link ng.directive:select select} - * - {@link ng.directive:textarea textarea} - * - */ -var ngModelDirective = function() { - return { - require: ['ngModel', '^?form'], - controller: NgModelController, - link: function(scope, element, attr, ctrls) { - // notify others, especially parent forms - - var modelCtrl = ctrls[0], - formCtrl = ctrls[1] || nullFormCtrl; - - formCtrl.$addControl(modelCtrl); - - scope.$on('$destroy', function() { - formCtrl.$removeControl(modelCtrl); - }); - } - }; -}; - - -/** - * @ngdoc directive - * @name ng.directive:ngChange - * - * @description - * Evaluate given expression when user changes the input. - * The expression is not evaluated when the value change is coming from the model. - * - * Note, this directive requires `ngModel` to be present. - * - * @element input - * @param {expression} ngChange {@link guide/expression Expression} to evaluate upon change - * in input value. - * - * @example - * - * - * - *
- * - * - *
- * debug = {{confirmed}}
- * counter = {{counter}} - *
- *
- * - * it('should evaluate the expression if changing from view', function() { - * expect(binding('counter')).toEqual('0'); - * element('#ng-change-example1').click(); - * expect(binding('counter')).toEqual('1'); - * expect(binding('confirmed')).toEqual('true'); - * }); - * - * it('should not evaluate the expression if changing from model', function() { - * element('#ng-change-example2').click(); - * expect(binding('counter')).toEqual('0'); - * expect(binding('confirmed')).toEqual('true'); - * }); - * - *
- */ -var ngChangeDirective = valueFn({ - require: 'ngModel', - link: function(scope, element, attr, ctrl) { - ctrl.$viewChangeListeners.push(function() { - scope.$eval(attr.ngChange); - }); - } -}); - - -var requiredDirective = function() { - return { - require: '?ngModel', - link: function(scope, elm, attr, ctrl) { - if (!ctrl) return; - attr.required = true; // force truthy in case we are on non input element - - var validator = function(value) { - if (attr.required && ctrl.$isEmpty(value)) { - ctrl.$setValidity('required', false); - return; - } else { - ctrl.$setValidity('required', true); - return value; - } - }; - - ctrl.$formatters.push(validator); - ctrl.$parsers.unshift(validator); - - attr.$observe('required', function() { - validator(ctrl.$viewValue); - }); - } - }; -}; - - -/** - * @ngdoc directive - * @name ng.directive:ngList - * - * @description - * Text input that converts between a delimited string and an array of strings. The delimiter - * can be a fixed string (by default a comma) or a regular expression. - * - * @element input - * @param {string=} ngList optional delimiter that should be used to split the value. If - * specified in form `/something/` then the value will be converted into a regular expression. - * - * @example - - - -
- List: - - Required! -
- names = {{names}}
- myForm.namesInput.$valid = {{myForm.namesInput.$valid}}
- myForm.namesInput.$error = {{myForm.namesInput.$error}}
- myForm.$valid = {{myForm.$valid}}
- myForm.$error.required = {{!!myForm.$error.required}}
-
-
- - it('should initialize to model', function() { - expect(binding('names')).toEqual('["igor","misko","vojta"]'); - expect(binding('myForm.namesInput.$valid')).toEqual('true'); - expect(element('span.error').css('display')).toBe('none'); - }); - - it('should be invalid if empty', function() { - input('names').enter(''); - expect(binding('names')).toEqual(''); - expect(binding('myForm.namesInput.$valid')).toEqual('false'); - expect(element('span.error').css('display')).not().toBe('none'); - }); - -
- */ -var ngListDirective = function() { - return { - require: 'ngModel', - link: function(scope, element, attr, ctrl) { - var match = /\/(.*)\//.exec(attr.ngList), - separator = match && new RegExp(match[1]) || attr.ngList || ','; - - var parse = function(viewValue) { - // If the viewValue is invalid (say required but empty) it will be `undefined` - if (isUndefined(viewValue)) return; - - var list = []; - - if (viewValue) { - forEach(viewValue.split(separator), function(value) { - if (value) list.push(trim(value)); - }); - } - - return list; - }; - - ctrl.$parsers.push(parse); - ctrl.$formatters.push(function(value) { - if (isArray(value)) { - return value.join(', '); - } - - return undefined; - }); - - // Override the standard $isEmpty because an empty array means the input is empty. - ctrl.$isEmpty = function(value) { - return !value || !value.length; - }; - } - }; -}; - - -var CONSTANT_VALUE_REGEXP = /^(true|false|\d+)$/; -/** - * @ngdoc directive - * @name ng.directive:ngValue - * - * @description - * Binds the given expression to the value of `input[select]` or `input[radio]`, so - * that when the element is selected, the `ngModel` of that element is set to the - * bound value. - * - * `ngValue` is useful when dynamically generating lists of radio buttons using `ng-repeat`, as - * shown below. - * - * @element input - * @param {string=} ngValue angular expression, whose value will be bound to the `value` attribute - * of the `input` element - * - * @example - - - -
-

Which is your favorite?

- -
You chose {{my.favorite}}
-
-
- - it('should initialize to model', function() { - expect(binding('my.favorite')).toEqual('unicorns'); - }); - it('should bind the values to the inputs', function() { - input('my.favorite').select('pizza'); - expect(binding('my.favorite')).toEqual('pizza'); - }); - -
- */ -var ngValueDirective = function() { - return { - priority: 100, - compile: function(tpl, tplAttr) { - if (CONSTANT_VALUE_REGEXP.test(tplAttr.ngValue)) { - return function ngValueConstantLink(scope, elm, attr) { - attr.$set('value', scope.$eval(attr.ngValue)); - }; - } else { - return function ngValueLink(scope, elm, attr) { - scope.$watch(attr.ngValue, function valueWatchAction(value) { - attr.$set('value', value); - }); - }; - } - } - }; -}; - -/** - * @ngdoc directive - * @name ng.directive:ngBind - * @restrict AC - * - * @description - * The `ngBind` attribute tells Angular to replace the text content of the specified HTML element - * with the value of a given expression, and to update the text content when the value of that - * expression changes. - * - * Typically, you don't use `ngBind` directly, but instead you use the double curly markup like - * `{{ expression }}` which is similar but less verbose. - * - * It is preferrable to use `ngBind` instead of `{{ expression }}` when a template is momentarily - * displayed by the browser in its raw state before Angular compiles it. Since `ngBind` is an - * element attribute, it makes the bindings invisible to the user while the page is loading. - * - * An alternative solution to this problem would be using the - * {@link ng.directive:ngCloak ngCloak} directive. - * - * - * @element ANY - * @param {expression} ngBind {@link guide/expression Expression} to evaluate. - * - * @example - * Enter a name in the Live Preview text box; the greeting below the text box changes instantly. - - - -
- Enter name:
- Hello ! -
-
- - it('should check ng-bind', function() { - expect(using('.doc-example-live').binding('name')).toBe('Whirled'); - using('.doc-example-live').input('name').enter('world'); - expect(using('.doc-example-live').binding('name')).toBe('world'); - }); - -
- */ -var ngBindDirective = ngDirective(function(scope, element, attr) { - element.addClass('ng-binding').data('$binding', attr.ngBind); - scope.$watch(attr.ngBind, function ngBindWatchAction(value) { - // We are purposefully using == here rather than === because we want to - // catch when value is "null or undefined" - // jshint -W041 - element.text(value == undefined ? '' : value); - }); -}); - - -/** - * @ngdoc directive - * @name ng.directive:ngBindTemplate - * - * @description - * The `ngBindTemplate` directive specifies that the element - * text content should be replaced with the interpolation of the template - * in the `ngBindTemplate` attribute. - * Unlike `ngBind`, the `ngBindTemplate` can contain multiple `{{` `}}` - * expressions. This directive is needed since some HTML elements - * (such as TITLE and OPTION) cannot contain SPAN elements. - * - * @element ANY - * @param {string} ngBindTemplate template of form - * {{ expression }} to eval. - * - * @example - * Try it here: enter text in text box and watch the greeting change. - - - -
- Salutation:
- Name:
-

-       
-
- - it('should check ng-bind', function() { - expect(using('.doc-example-live').binding('salutation')). - toBe('Hello'); - expect(using('.doc-example-live').binding('name')). - toBe('World'); - using('.doc-example-live').input('salutation').enter('Greetings'); - using('.doc-example-live').input('name').enter('user'); - expect(using('.doc-example-live').binding('salutation')). - toBe('Greetings'); - expect(using('.doc-example-live').binding('name')). - toBe('user'); - }); - -
- */ -var ngBindTemplateDirective = ['$interpolate', function($interpolate) { - return function(scope, element, attr) { - // TODO: move this to scenario runner - var interpolateFn = $interpolate(element.attr(attr.$attr.ngBindTemplate)); - element.addClass('ng-binding').data('$binding', interpolateFn); - attr.$observe('ngBindTemplate', function(value) { - element.text(value); - }); - }; -}]; - - -/** - * @ngdoc directive - * @name ng.directive:ngBindHtml - * - * @description - * Creates a binding that will innerHTML the result of evaluating the `expression` into the current - * element in a secure way. By default, the innerHTML-ed content will be sanitized using the {@link - * ngSanitize.$sanitize $sanitize} service. To utilize this functionality, ensure that `$sanitize` - * is available, for example, by including {@link ngSanitize} in your module's dependencies (not in - * core Angular.) You may also bypass sanitization for values you know are safe. To do so, bind to - * an explicitly trusted value via {@link ng.$sce#methods_trustAsHtml $sce.trustAsHtml}. See the example - * under {@link ng.$sce#Example Strict Contextual Escaping (SCE)}. - * - * Note: If a `$sanitize` service is unavailable and the bound value isn't explicitly trusted, you - * will have an exception (instead of an exploit.) - * - * @element ANY - * @param {expression} ngBindHtml {@link guide/expression Expression} to evaluate. - * - * @example - Try it here: enter text in text box and watch the greeting change. - - - -
-

-
-
- - - angular.module('ngBindHtmlExample', ['ngSanitize']) - - .controller('ngBindHtmlCtrl', ['$scope', function ngBindHtmlCtrl($scope) { - $scope.myHTML = - 'I am an HTMLstring with links! and other stuff'; - }]); - - - - it('should check ng-bind-html', function() { - expect(using('.doc-example-live').binding('myHTML')). - toBe( - 'I am an HTMLstring with links! and other stuff' - ); - }); - -
- */ -var ngBindHtmlDirective = ['$sce', '$parse', function($sce, $parse) { - return function(scope, element, attr) { - element.addClass('ng-binding').data('$binding', attr.ngBindHtml); - - var parsed = $parse(attr.ngBindHtml); - function getStringValue() { return (parsed(scope) || '').toString(); } - - scope.$watch(getStringValue, function ngBindHtmlWatchAction(value) { - element.html($sce.getTrustedHtml(parsed(scope)) || ''); - }); - }; -}]; - -function classDirective(name, selector) { - name = 'ngClass' + name; - return function() { - return { - restrict: 'AC', - link: function(scope, element, attr) { - var oldVal; - - scope.$watch(attr[name], ngClassWatchAction, true); - - attr.$observe('class', function(value) { - ngClassWatchAction(scope.$eval(attr[name])); - }); - - - if (name !== 'ngClass') { - scope.$watch('$index', function($index, old$index) { - // jshint bitwise: false - var mod = $index & 1; - if (mod !== old$index & 1) { - var classes = flattenClasses(scope.$eval(attr[name])); - mod === selector ? - attr.$addClass(classes) : - attr.$removeClass(classes); - } - }); - } - - - function ngClassWatchAction(newVal) { - if (selector === true || scope.$index % 2 === selector) { - var newClasses = flattenClasses(newVal || ''); - if(!oldVal) { - attr.$addClass(newClasses); - } else if(!equals(newVal,oldVal)) { - attr.$updateClass(newClasses, flattenClasses(oldVal)); - } - } - oldVal = copy(newVal); - } - - - function flattenClasses(classVal) { - if(isArray(classVal)) { - return classVal.join(' '); - } else if (isObject(classVal)) { - var classes = [], i = 0; - forEach(classVal, function(v, k) { - if (v) { - classes.push(k); - } - }); - return classes.join(' '); - } - - return classVal; - } - } - }; - }; -} - -/** - * @ngdoc directive - * @name ng.directive:ngClass - * @restrict AC - * - * @description - * The `ngClass` directive allows you to dynamically set CSS classes on an HTML element by databinding - * an expression that represents all classes to be added. - * - * The directive won't add duplicate classes if a particular class was already set. - * - * When the expression changes, the previously added classes are removed and only then the - * new classes are added. - * - * @animations - * add - happens just before the class is applied to the element - * remove - happens just before the class is removed from the element - * - * @element ANY - * @param {expression} ngClass {@link guide/expression Expression} to eval. The result - * of the evaluation can be a string representing space delimited class - * names, an array, or a map of class names to boolean values. In the case of a map, the - * names of the properties whose values are truthy will be added as css classes to the - * element. - * - * @example Example that demonstrates basic bindings via ngClass directive. - - -

Map Syntax Example

- deleted (apply "strike" class)
- important (apply "bold" class)
- error (apply "red" class) -
-

Using String Syntax

- -
-

Using Array Syntax

-
-
-
-
- - .strike { - text-decoration: line-through; - } - .bold { - font-weight: bold; - } - .red { - color: red; - } - - - it('should let you toggle the class', function() { - - expect(element('.doc-example-live p:first').prop('className')).not().toMatch(/bold/); - expect(element('.doc-example-live p:first').prop('className')).not().toMatch(/red/); - - input('important').check(); - expect(element('.doc-example-live p:first').prop('className')).toMatch(/bold/); - - input('error').check(); - expect(element('.doc-example-live p:first').prop('className')).toMatch(/red/); - }); - - it('should let you toggle string example', function() { - expect(element('.doc-example-live p:nth-of-type(2)').prop('className')).toBe(''); - input('style').enter('red'); - expect(element('.doc-example-live p:nth-of-type(2)').prop('className')).toBe('red'); - }); - - it('array example should have 3 classes', function() { - expect(element('.doc-example-live p:last').prop('className')).toBe(''); - input('style1').enter('bold'); - input('style2').enter('strike'); - input('style3').enter('red'); - expect(element('.doc-example-live p:last').prop('className')).toBe('bold strike red'); - }); - -
- - ## Animations - - The example below demonstrates how to perform animations using ngClass. - - - - - -
- Sample Text -
- - .base-class { - -webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; - transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; - } - - .base-class.my-class { - color: red; - font-size:3em; - } - - - it('should check ng-class', function() { - expect(element('.doc-example-live span').prop('className')).not(). - toMatch(/my-class/); - - using('.doc-example-live').element(':button:first').click(); - - expect(element('.doc-example-live span').prop('className')). - toMatch(/my-class/); - - using('.doc-example-live').element(':button:last').click(); - - expect(element('.doc-example-live span').prop('className')).not(). - toMatch(/my-class/); - }); - -
- - - ## ngClass and pre-existing CSS3 Transitions/Animations - The ngClass directive still supports CSS3 Transitions/Animations even if they do not follow the ngAnimate CSS naming structure. - Upon animation ngAnimate will apply supplementary CSS classes to track the start and end of an animation, but this will not hinder - any pre-existing CSS transitions already on the element. To get an idea of what happens during a class-based animation, be sure - to view the step by step details of {@link ngAnimate.$animate#methods_addclass $animate.addClass} and - {@link ngAnimate.$animate#methods_removeclass $animate.removeClass}. - */ -var ngClassDirective = classDirective('', true); - -/** - * @ngdoc directive - * @name ng.directive:ngClassOdd - * @restrict AC - * - * @description - * The `ngClassOdd` and `ngClassEven` directives work exactly as - * {@link ng.directive:ngClass ngClass}, except they work in - * conjunction with `ngRepeat` and take effect only on odd (even) rows. - * - * This directive can be applied only within the scope of an - * {@link ng.directive:ngRepeat ngRepeat}. - * - * @element ANY - * @param {expression} ngClassOdd {@link guide/expression Expression} to eval. The result - * of the evaluation can be a string representing space delimited class names or an array. - * - * @example - - -
    -
  1. - - {{name}} - -
  2. -
-
- - .odd { - color: red; - } - .even { - color: blue; - } - - - it('should check ng-class-odd and ng-class-even', function() { - expect(element('.doc-example-live li:first span').prop('className')). - toMatch(/odd/); - expect(element('.doc-example-live li:last span').prop('className')). - toMatch(/even/); - }); - -
- */ -var ngClassOddDirective = classDirective('Odd', 0); - -/** - * @ngdoc directive - * @name ng.directive:ngClassEven - * @restrict AC - * - * @description - * The `ngClassOdd` and `ngClassEven` directives work exactly as - * {@link ng.directive:ngClass ngClass}, except they work in - * conjunction with `ngRepeat` and take effect only on odd (even) rows. - * - * This directive can be applied only within the scope of an - * {@link ng.directive:ngRepeat ngRepeat}. - * - * @element ANY - * @param {expression} ngClassEven {@link guide/expression Expression} to eval. The - * result of the evaluation can be a string representing space delimited class names or an array. - * - * @example - - -
    -
  1. - - {{name}}       - -
  2. -
-
- - .odd { - color: red; - } - .even { - color: blue; - } - - - it('should check ng-class-odd and ng-class-even', function() { - expect(element('.doc-example-live li:first span').prop('className')). - toMatch(/odd/); - expect(element('.doc-example-live li:last span').prop('className')). - toMatch(/even/); - }); - -
- */ -var ngClassEvenDirective = classDirective('Even', 1); - -/** - * @ngdoc directive - * @name ng.directive:ngCloak - * @restrict AC - * - * @description - * The `ngCloak` directive is used to prevent the Angular html template from being briefly - * displayed by the browser in its raw (uncompiled) form while your application is loading. Use this - * directive to avoid the undesirable flicker effect caused by the html template display. - * - * The directive can be applied to the `` element, but the preferred usage is to apply - * multiple `ngCloak` directives to small portions of the page to permit progressive rendering - * of the browser view. - * - * `ngCloak` works in cooperation with the following css rule embedded within `angular.js` and - * `angular.min.js`. - * For CSP mode please add `angular-csp.css` to your html file (see {@link ng.directive:ngCsp ngCsp}). - * - *
- * [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
- *   display: none !important;
- * }
- * 
- * - * When this css rule is loaded by the browser, all html elements (including their children) that - * are tagged with the `ngCloak` directive are hidden. When Angular encounters this directive - * during the compilation of the template it deletes the `ngCloak` element attribute, making - * the compiled element visible. - * - * For the best result, the `angular.js` script must be loaded in the head section of the html - * document; alternatively, the css rule above must be included in the external stylesheet of the - * application. - * - * Legacy browsers, like IE7, do not provide attribute selector support (added in CSS 2.1) so they - * cannot match the `[ng\:cloak]` selector. To work around this limitation, you must add the css - * class `ng-cloak` in addition to the `ngCloak` directive as shown in the example below. - * - * @element ANY - * - * @example - - -
{{ 'hello' }}
-
{{ 'hello IE7' }}
-
- - it('should remove the template directive and css class', function() { - expect(element('.doc-example-live #template1').attr('ng-cloak')). - not().toBeDefined(); - expect(element('.doc-example-live #template2').attr('ng-cloak')). - not().toBeDefined(); - }); - -
- * - */ -var ngCloakDirective = ngDirective({ - compile: function(element, attr) { - attr.$set('ngCloak', undefined); - element.removeClass('ng-cloak'); - } -}); - -/** - * @ngdoc directive - * @name ng.directive:ngController - * - * @description - * The `ngController` directive attaches a controller class to the view. This is a key aspect of how angular - * supports the principles behind the Model-View-Controller design pattern. - * - * MVC components in angular: - * - * * Model — The Model is scope properties; scopes are attached to the DOM where scope properties - * are accessed through bindings. - * * View — The template (HTML with data bindings) that is rendered into the View. - * * Controller — The `ngController` directive specifies a Controller class; the class contains business - * logic behind the application to decorate the scope with functions and values - * - * Note that you can also attach controllers to the DOM by declaring it in a route definition - * via the {@link ngRoute.$route $route} service. A common mistake is to declare the controller - * again using `ng-controller` in the template itself. This will cause the controller to be attached - * and executed twice. - * - * @element ANY - * @scope - * @param {expression} ngController Name of a globally accessible constructor function or an - * {@link guide/expression expression} that on the current scope evaluates to a - * constructor function. The controller instance can be published into a scope property - * by specifying `as propertyName`. - * - * @example - * Here is a simple form for editing user contact information. Adding, removing, clearing, and - * greeting are methods declared on the controller (see source tab). These methods can - * easily be called from the angular markup. Notice that the scope becomes the `this` for the - * controller's instance. This allows for easy access to the view data from the controller. Also - * notice that any changes to the data are automatically reflected in the View without the need - * for a manual update. The example is shown in two different declaration styles you may use - * according to preference. - - - -
- Name: - [ greet ]
- Contact: -
    -
  • - - - [ clear - | X ] -
  • -
  • [ add ]
  • -
-
-
- - it('should check controller as', function() { - expect(element('#ctrl-as-exmpl>:input').val()).toBe('John Smith'); - expect(element('#ctrl-as-exmpl li:nth-child(1) input').val()) - .toBe('408 555 1212'); - expect(element('#ctrl-as-exmpl li:nth-child(2) input').val()) - .toBe('john.smith@example.org'); - - element('#ctrl-as-exmpl li:first a:contains("clear")').click(); - expect(element('#ctrl-as-exmpl li:first input').val()).toBe(''); - - element('#ctrl-as-exmpl li:last a:contains("add")').click(); - expect(element('#ctrl-as-exmpl li:nth-child(3) input').val()) - .toBe('yourname@example.org'); - }); - -
- - - -
- Name: - [ greet ]
- Contact: -
    -
  • - - - [ clear - | X ] -
  • -
  • [ add ]
  • -
-
-
- - it('should check controller', function() { - expect(element('#ctrl-exmpl>:input').val()).toBe('John Smith'); - expect(element('#ctrl-exmpl li:nth-child(1) input').val()) - .toBe('408 555 1212'); - expect(element('#ctrl-exmpl li:nth-child(2) input').val()) - .toBe('john.smith@example.org'); - - element('#ctrl-exmpl li:first a:contains("clear")').click(); - expect(element('#ctrl-exmpl li:first input').val()).toBe(''); - - element('#ctrl-exmpl li:last a:contains("add")').click(); - expect(element('#ctrl-exmpl li:nth-child(3) input').val()) - .toBe('yourname@example.org'); - }); - -
- - */ -var ngControllerDirective = [function() { - return { - scope: true, - controller: '@', - priority: 500 - }; -}]; - -/** - * @ngdoc directive - * @name ng.directive:ngCsp - * - * @element html - * @description - * Enables [CSP (Content Security Policy)](https://developer.mozilla.org/en/Security/CSP) support. - * - * This is necessary when developing things like Google Chrome Extensions. - * - * CSP forbids apps to use `eval` or `Function(string)` generated functions (among other things). - * For us to be compatible, we just need to implement the "getterFn" in $parse without violating - * any of these restrictions. - * - * AngularJS uses `Function(string)` generated functions as a speed optimization. Applying the `ngCsp` - * directive will cause Angular to use CSP compatibility mode. When this mode is on AngularJS will - * evaluate all expressions up to 30% slower than in non-CSP mode, but no security violations will - * be raised. - * - * CSP forbids JavaScript to inline stylesheet rules. In non CSP mode Angular automatically - * includes some CSS rules (e.g. {@link ng.directive:ngCloak ngCloak}). - * To make those directives work in CSP mode, include the `angular-csp.css` manually. - * - * In order to use this feature put the `ngCsp` directive on the root element of the application. - * - * *Note: This directive is only available in the `ng-csp` and `data-ng-csp` attribute form.* - * - * @example - * This example shows how to apply the `ngCsp` directive to the `html` tag. -
-     
-     
-     ...
-     ...
-     
-   
- */ - -// ngCsp is not implemented as a proper directive any more, because we need it be processed while we bootstrap -// the system (before $parse is instantiated), for this reason we just have a csp() fn that looks for ng-csp attribute -// anywhere in the current doc - -/** - * @ngdoc directive - * @name ng.directive:ngClick - * - * @description - * The ngClick directive allows you to specify custom behavior when - * an element is clicked. - * - * @element ANY - * @param {expression} ngClick {@link guide/expression Expression} to evaluate upon - * click. (Event object is available as `$event`) - * - * @example - - - - count: {{count}} - - - it('should check ng-click', function() { - expect(binding('count')).toBe('0'); - element('.doc-example-live :button').click(); - expect(binding('count')).toBe('1'); - }); - - - */ -/* - * A directive that allows creation of custom onclick handlers that are defined as angular - * expressions and are compiled and executed within the current scope. - * - * Events that are handled via these handler are always configured not to propagate further. - */ -var ngEventDirectives = {}; -forEach( - 'click dblclick mousedown mouseup mouseover mouseout mousemove mouseenter mouseleave keydown keyup keypress submit focus blur copy cut paste'.split(' '), - function(name) { - var directiveName = directiveNormalize('ng-' + name); - ngEventDirectives[directiveName] = ['$parse', function($parse) { - return { - compile: function($element, attr) { - var fn = $parse(attr[directiveName]); - return function(scope, element, attr) { - element.on(lowercase(name), function(event) { - scope.$apply(function() { - fn(scope, {$event:event}); - }); - }); - }; - } - }; - }]; - } -); - -/** - * @ngdoc directive - * @name ng.directive:ngDblclick - * - * @description - * The `ngDblclick` directive allows you to specify custom behavior on a dblclick event. - * - * @element ANY - * @param {expression} ngDblclick {@link guide/expression Expression} to evaluate upon - * a dblclick. (The Event object is available as `$event`) - * - * @example - - - - count: {{count}} - - - */ - - -/** - * @ngdoc directive - * @name ng.directive:ngMousedown - * - * @description - * The ngMousedown directive allows you to specify custom behavior on mousedown event. - * - * @element ANY - * @param {expression} ngMousedown {@link guide/expression Expression} to evaluate upon - * mousedown. (Event object is available as `$event`) - * - * @example - - - - count: {{count}} - - - */ - - -/** - * @ngdoc directive - * @name ng.directive:ngMouseup - * - * @description - * Specify custom behavior on mouseup event. - * - * @element ANY - * @param {expression} ngMouseup {@link guide/expression Expression} to evaluate upon - * mouseup. (Event object is available as `$event`) - * - * @example - - - - count: {{count}} - - - */ - -/** - * @ngdoc directive - * @name ng.directive:ngMouseover - * - * @description - * Specify custom behavior on mouseover event. - * - * @element ANY - * @param {expression} ngMouseover {@link guide/expression Expression} to evaluate upon - * mouseover. (Event object is available as `$event`) - * - * @example - - - - count: {{count}} - - - */ - - -/** - * @ngdoc directive - * @name ng.directive:ngMouseenter - * - * @description - * Specify custom behavior on mouseenter event. - * - * @element ANY - * @param {expression} ngMouseenter {@link guide/expression Expression} to evaluate upon - * mouseenter. (Event object is available as `$event`) - * - * @example - - - - count: {{count}} - - - */ - - -/** - * @ngdoc directive - * @name ng.directive:ngMouseleave - * - * @description - * Specify custom behavior on mouseleave event. - * - * @element ANY - * @param {expression} ngMouseleave {@link guide/expression Expression} to evaluate upon - * mouseleave. (Event object is available as `$event`) - * - * @example - - - - count: {{count}} - - - */ - - -/** - * @ngdoc directive - * @name ng.directive:ngMousemove - * - * @description - * Specify custom behavior on mousemove event. - * - * @element ANY - * @param {expression} ngMousemove {@link guide/expression Expression} to evaluate upon - * mousemove. (Event object is available as `$event`) - * - * @example - - - - count: {{count}} - - - */ - - -/** - * @ngdoc directive - * @name ng.directive:ngKeydown - * - * @description - * Specify custom behavior on keydown event. - * - * @element ANY - * @param {expression} ngKeydown {@link guide/expression Expression} to evaluate upon - * keydown. (Event object is available as `$event` and can be interrogated for keyCode, altKey, etc.) - * - * @example - - - - key down count: {{count}} - - - */ - - -/** - * @ngdoc directive - * @name ng.directive:ngKeyup - * - * @description - * Specify custom behavior on keyup event. - * - * @element ANY - * @param {expression} ngKeyup {@link guide/expression Expression} to evaluate upon - * keyup. (Event object is available as `$event` and can be interrogated for keyCode, altKey, etc.) - * - * @example - - - - key up count: {{count}} - - - */ - - -/** - * @ngdoc directive - * @name ng.directive:ngKeypress - * - * @description - * Specify custom behavior on keypress event. - * - * @element ANY - * @param {expression} ngKeypress {@link guide/expression Expression} to evaluate upon - * keypress. (Event object is available as `$event` and can be interrogated for keyCode, altKey, etc.) - * - * @example - - - - key press count: {{count}} - - - */ - - -/** - * @ngdoc directive - * @name ng.directive:ngSubmit - * - * @description - * Enables binding angular expressions to onsubmit events. - * - * Additionally it prevents the default action (which for form means sending the request to the - * server and reloading the current page) **but only if the form does not contain an `action` - * attribute**. - * - * @element form - * @param {expression} ngSubmit {@link guide/expression Expression} to eval. (Event object is available as `$event`) - * - * @example - - - -
- Enter text and hit enter: - - -
list={{list}}
-
-
- - it('should check ng-submit', function() { - expect(binding('list')).toBe('[]'); - element('.doc-example-live #submit').click(); - expect(binding('list')).toBe('["hello"]'); - expect(input('text').val()).toBe(''); - }); - it('should ignore empty strings', function() { - expect(binding('list')).toBe('[]'); - element('.doc-example-live #submit').click(); - element('.doc-example-live #submit').click(); - expect(binding('list')).toBe('["hello"]'); - }); - -
- */ - -/** - * @ngdoc directive - * @name ng.directive:ngFocus - * - * @description - * Specify custom behavior on focus event. - * - * @element window, input, select, textarea, a - * @param {expression} ngFocus {@link guide/expression Expression} to evaluate upon - * focus. (Event object is available as `$event`) - * - * @example - * See {@link ng.directive:ngClick ngClick} - */ - -/** - * @ngdoc directive - * @name ng.directive:ngBlur - * - * @description - * Specify custom behavior on blur event. - * - * @element window, input, select, textarea, a - * @param {expression} ngBlur {@link guide/expression Expression} to evaluate upon - * blur. (Event object is available as `$event`) - * - * @example - * See {@link ng.directive:ngClick ngClick} - */ - -/** - * @ngdoc directive - * @name ng.directive:ngCopy - * - * @description - * Specify custom behavior on copy event. - * - * @element window, input, select, textarea, a - * @param {expression} ngCopy {@link guide/expression Expression} to evaluate upon - * copy. (Event object is available as `$event`) - * - * @example - - - - copied: {{copied}} - - - */ - -/** - * @ngdoc directive - * @name ng.directive:ngCut - * - * @description - * Specify custom behavior on cut event. - * - * @element window, input, select, textarea, a - * @param {expression} ngCut {@link guide/expression Expression} to evaluate upon - * cut. (Event object is available as `$event`) - * - * @example - - - - cut: {{cut}} - - - */ - -/** - * @ngdoc directive - * @name ng.directive:ngPaste - * - * @description - * Specify custom behavior on paste event. - * - * @element window, input, select, textarea, a - * @param {expression} ngPaste {@link guide/expression Expression} to evaluate upon - * paste. (Event object is available as `$event`) - * - * @example - - - - pasted: {{paste}} - - - */ - -/** - * @ngdoc directive - * @name ng.directive:ngIf - * @restrict A - * - * @description - * The `ngIf` directive removes or recreates a portion of the DOM tree based on an - * {expression}. If the expression assigned to `ngIf` evaluates to a false - * value then the element is removed from the DOM, otherwise a clone of the - * element is reinserted into the DOM. - * - * `ngIf` differs from `ngShow` and `ngHide` in that `ngIf` completely removes and recreates the - * element in the DOM rather than changing its visibility via the `display` css property. A common - * case when this difference is significant is when using css selectors that rely on an element's - * position within the DOM, such as the `:first-child` or `:last-child` pseudo-classes. - * - * Note that when an element is removed using `ngIf` its scope is destroyed and a new scope - * is created when the element is restored. The scope created within `ngIf` inherits from - * its parent scope using - * {@link https://github.com/angular/angular.js/wiki/The-Nuances-of-Scope-Prototypal-Inheritance prototypal inheritance}. - * An important implication of this is if `ngModel` is used within `ngIf` to bind to - * a javascript primitive defined in the parent scope. In this case any modifications made to the - * variable within the child scope will override (hide) the value in the parent scope. - * - * Also, `ngIf` recreates elements using their compiled state. An example of this behavior - * is if an element's class attribute is directly modified after it's compiled, using something like - * jQuery's `.addClass()` method, and the element is later removed. When `ngIf` recreates the element - * the added class will be lost because the original compiled state is used to regenerate the element. - * - * Additionally, you can provide animations via the `ngAnimate` module to animate the `enter` - * and `leave` effects. - * - * @animations - * enter - happens just after the ngIf contents change and a new DOM element is created and injected into the ngIf container - * leave - happens just before the ngIf contents are removed from the DOM - * - * @element ANY - * @scope - * @priority 600 - * @param {expression} ngIf If the {@link guide/expression expression} is falsy then - * the element is removed from the DOM tree. If it is truthy a copy of the compiled - * element is added to the DOM tree. - * - * @example - - - Click me:
- Show when checked: - - I'm removed when the checkbox is unchecked. - -
- - .animate-if { - background:white; - border:1px solid black; - padding:10px; - } - - .animate-if.ng-enter, .animate-if.ng-leave { - -webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; - transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; - } - - .animate-if.ng-enter, - .animate-if.ng-leave.ng-leave-active { - opacity:0; - } - - .animate-if.ng-leave, - .animate-if.ng-enter.ng-enter-active { - opacity:1; - } - -
- */ -var ngIfDirective = ['$animate', function($animate) { - return { - transclude: 'element', - priority: 600, - terminal: true, - restrict: 'A', - $$tlb: true, - link: function ($scope, $element, $attr, ctrl, $transclude) { - var block, childScope; - $scope.$watch($attr.ngIf, function ngIfWatchAction(value) { - - if (toBoolean(value)) { - if (!childScope) { - childScope = $scope.$new(); - $transclude(childScope, function (clone) { - clone[clone.length++] = document.createComment(' end ngIf: ' + $attr.ngIf + ' '); - // Note: We only need the first/last node of the cloned nodes. - // However, we need to keep the reference to the jqlite wrapper as it might be changed later - // by a directive with templateUrl when it's template arrives. - block = { - clone: clone - }; - $animate.enter(clone, $element.parent(), $element); - }); - } - } else { - - if (childScope) { - childScope.$destroy(); - childScope = null; - } - - if (block) { - $animate.leave(getBlockElements(block.clone)); - block = null; - } - } - }); - } - }; -}]; - -/** - * @ngdoc directive - * @name ng.directive:ngInclude - * @restrict ECA - * - * @description - * Fetches, compiles and includes an external HTML fragment. - * - * By default, the template URL is restricted to the same domain and protocol as the - * application document. This is done by calling {@link ng.$sce#methods_getTrustedResourceUrl - * $sce.getTrustedResourceUrl} on it. To load templates from other domains or protocols - * you may either {@link ng.$sceDelegateProvider#methods_resourceUrlWhitelist whitelist them} or - * {@link ng.$sce#methods_trustAsResourceUrl wrap them} as trusted values. Refer to Angular's {@link - * ng.$sce Strict Contextual Escaping}. - * - * In addition, the browser's - * {@link https://code.google.com/p/browsersec/wiki/Part2#Same-origin_policy_for_XMLHttpRequest - * Same Origin Policy} and {@link http://www.w3.org/TR/cors/ Cross-Origin Resource Sharing - * (CORS)} policy may further restrict whether the template is successfully loaded. - * For example, `ngInclude` won't work for cross-domain requests on all browsers and for `file://` - * access on some browsers. - * - * @animations - * enter - animation is used to bring new content into the browser. - * leave - animation is used to animate existing content away. - * - * The enter and leave animation occur concurrently. - * - * @scope - * @priority 400 - * - * @param {string} ngInclude|src angular expression evaluating to URL. If the source is a string constant, - * make sure you wrap it in quotes, e.g. `src="'myPartialTemplate.html'"`. - * @param {string=} onload Expression to evaluate when a new partial is loaded. - * - * @param {string=} autoscroll Whether `ngInclude` should call {@link ng.$anchorScroll - * $anchorScroll} to scroll the viewport after the content is loaded. - * - * - If the attribute is not set, disable scrolling. - * - If the attribute is set without value, enable scrolling. - * - Otherwise enable scrolling only if the expression evaluates to truthy value. - * - * @example - - -
- - url of the template: {{template.url}} -
-
-
-
-
-
- - function Ctrl($scope) { - $scope.templates = - [ { name: 'template1.html', url: 'template1.html'} - , { name: 'template2.html', url: 'template2.html'} ]; - $scope.template = $scope.templates[0]; - } - - - Content of template1.html - - - Content of template2.html - - - .slide-animate-container { - position:relative; - background:white; - border:1px solid black; - height:40px; - overflow:hidden; - } - - .slide-animate { - padding:10px; - } - - .slide-animate.ng-enter, .slide-animate.ng-leave { - -webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; - transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; - - position:absolute; - top:0; - left:0; - right:0; - bottom:0; - display:block; - padding:10px; - } - - .slide-animate.ng-enter { - top:-50px; - } - .slide-animate.ng-enter.ng-enter-active { - top:0; - } - - .slide-animate.ng-leave { - top:0; - } - .slide-animate.ng-leave.ng-leave-active { - top:50px; - } - - - it('should load template1.html', function() { - expect(element('.doc-example-live [ng-include]').text()). - toMatch(/Content of template1.html/); - }); - it('should load template2.html', function() { - select('template').option('1'); - expect(element('.doc-example-live [ng-include]').text()). - toMatch(/Content of template2.html/); - }); - it('should change to blank', function() { - select('template').option(''); - expect(element('.doc-example-live [ng-include]')).toBe(undefined); - }); - -
- */ - - -/** - * @ngdoc event - * @name ng.directive:ngInclude#$includeContentRequested - * @eventOf ng.directive:ngInclude - * @eventType emit on the scope ngInclude was declared in - * @description - * Emitted every time the ngInclude content is requested. - */ - - -/** - * @ngdoc event - * @name ng.directive:ngInclude#$includeContentLoaded - * @eventOf ng.directive:ngInclude - * @eventType emit on the current ngInclude scope - * @description - * Emitted every time the ngInclude content is reloaded. - */ -var ngIncludeDirective = ['$http', '$templateCache', '$anchorScroll', '$animate', '$sce', - function($http, $templateCache, $anchorScroll, $animate, $sce) { - return { - restrict: 'ECA', - priority: 400, - terminal: true, - transclude: 'element', - controller: angular.noop, - compile: function(element, attr) { - var srcExp = attr.ngInclude || attr.src, - onloadExp = attr.onload || '', - autoScrollExp = attr.autoscroll; - - return function(scope, $element, $attr, ctrl, $transclude) { - var changeCounter = 0, - currentScope, - currentElement; - - var cleanupLastIncludeContent = function() { - if (currentScope) { - currentScope.$destroy(); - currentScope = null; - } - if(currentElement) { - $animate.leave(currentElement); - currentElement = null; - } - }; - - scope.$watch($sce.parseAsResourceUrl(srcExp), function ngIncludeWatchAction(src) { - var afterAnimation = function() { - if (isDefined(autoScrollExp) && (!autoScrollExp || scope.$eval(autoScrollExp))) { - $anchorScroll(); - } - }; - var thisChangeId = ++changeCounter; - - if (src) { - $http.get(src, {cache: $templateCache}).success(function(response) { - if (thisChangeId !== changeCounter) return; - var newScope = scope.$new(); - ctrl.template = response; - - // Note: This will also link all children of ng-include that were contained in the original - // html. If that content contains controllers, ... they could pollute/change the scope. - // However, using ng-include on an element with additional content does not make sense... - // Note: We can't remove them in the cloneAttchFn of $transclude as that - // function is called before linking the content, which would apply child - // directives to non existing elements. - var clone = $transclude(newScope, function(clone) { - cleanupLastIncludeContent(); - $animate.enter(clone, null, $element, afterAnimation); - }); - - currentScope = newScope; - currentElement = clone; - - currentScope.$emit('$includeContentLoaded'); - scope.$eval(onloadExp); - }).error(function() { - if (thisChangeId === changeCounter) cleanupLastIncludeContent(); - }); - scope.$emit('$includeContentRequested'); - } else { - cleanupLastIncludeContent(); - ctrl.template = null; - } - }); - }; - } - }; -}]; - -// This directive is called during the $transclude call of the first `ngInclude` directive. -// It will replace and compile the content of the element with the loaded template. -// We need this directive so that the element content is already filled when -// the link function of another directive on the same element as ngInclude -// is called. -var ngIncludeFillContentDirective = ['$compile', - function($compile) { - return { - restrict: 'ECA', - priority: -400, - require: 'ngInclude', - link: function(scope, $element, $attr, ctrl) { - $element.html(ctrl.template); - $compile($element.contents())(scope); - } - }; - }]; - -/** - * @ngdoc directive - * @name ng.directive:ngInit - * @restrict AC - * - * @description - * The `ngInit` directive allows you to evaluate an expression in the - * current scope. - * - *
- * The only appropriate use of `ngInit` is for aliasing special properties of - * {@link api/ng.directive:ngRepeat `ngRepeat`}, as seen in the demo below. Besides this case, you - * should use {@link guide/controller controllers} rather than `ngInit` - * to initialize values on a scope. - *
- * - * @priority 450 - * - * @element ANY - * @param {expression} ngInit {@link guide/expression Expression} to eval. - * - * @example - - - -
-
-
- list[ {{outerIndex}} ][ {{innerIndex}} ] = {{value}}; -
-
-
-
- - it('should alias index positions', function() { - expect(element('.example-init').text()) - .toBe('list[ 0 ][ 0 ] = a;' + - 'list[ 0 ][ 1 ] = b;' + - 'list[ 1 ][ 0 ] = c;' + - 'list[ 1 ][ 1 ] = d;'); - }); - -
- */ -var ngInitDirective = ngDirective({ - priority: 450, - compile: function() { - return { - pre: function(scope, element, attrs) { - scope.$eval(attrs.ngInit); - } - }; - } -}); - -/** - * @ngdoc directive - * @name ng.directive:ngNonBindable - * @restrict AC - * @priority 1000 - * - * @description - * The `ngNonBindable` directive tells Angular not to compile or bind the contents of the current - * DOM element. This is useful if the element contains what appears to be Angular directives and - * bindings but which should be ignored by Angular. This could be the case if you have a site that - * displays snippets of code, for instance. - * - * @element ANY - * - * @example - * In this example there are two locations where a simple interpolation binding (`{{}}`) is present, - * but the one wrapped in `ngNonBindable` is left alone. - * - * @example - - -
Normal: {{1 + 2}}
-
Ignored: {{1 + 2}}
-
- - it('should check ng-non-bindable', function() { - expect(using('.doc-example-live').binding('1 + 2')).toBe('3'); - expect(using('.doc-example-live').element('div:last').text()). - toMatch(/1 \+ 2/); - }); - -
- */ -var ngNonBindableDirective = ngDirective({ terminal: true, priority: 1000 }); - -/** - * @ngdoc directive - * @name ng.directive:ngPluralize - * @restrict EA - * - * @description - * # Overview - * `ngPluralize` is a directive that displays messages according to en-US localization rules. - * These rules are bundled with angular.js, but can be overridden - * (see {@link guide/i18n Angular i18n} dev guide). You configure ngPluralize directive - * by specifying the mappings between - * {@link http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html - * plural categories} and the strings to be displayed. - * - * # Plural categories and explicit number rules - * There are two - * {@link http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html - * plural categories} in Angular's default en-US locale: "one" and "other". - * - * While a plural category may match many numbers (for example, in en-US locale, "other" can match - * any number that is not 1), an explicit number rule can only match one number. For example, the - * explicit number rule for "3" matches the number 3. There are examples of plural categories - * and explicit number rules throughout the rest of this documentation. - * - * # Configuring ngPluralize - * You configure ngPluralize by providing 2 attributes: `count` and `when`. - * You can also provide an optional attribute, `offset`. - * - * The value of the `count` attribute can be either a string or an {@link guide/expression - * Angular expression}; these are evaluated on the current scope for its bound value. - * - * The `when` attribute specifies the mappings between plural categories and the actual - * string to be displayed. The value of the attribute should be a JSON object. - * - * The following example shows how to configure ngPluralize: - * - *
- * 
- * 
- *
- * - * In the example, `"0: Nobody is viewing."` is an explicit number rule. If you did not - * specify this rule, 0 would be matched to the "other" category and "0 people are viewing" - * would be shown instead of "Nobody is viewing". You can specify an explicit number rule for - * other numbers, for example 12, so that instead of showing "12 people are viewing", you can - * show "a dozen people are viewing". - * - * You can use a set of closed braces (`{}`) as a placeholder for the number that you want substituted - * into pluralized strings. In the previous example, Angular will replace `{}` with - * `{{personCount}}`. The closed braces `{}` is a placeholder - * for {{numberExpression}}. - * - * # Configuring ngPluralize with offset - * The `offset` attribute allows further customization of pluralized text, which can result in - * a better user experience. For example, instead of the message "4 people are viewing this document", - * you might display "John, Kate and 2 others are viewing this document". - * The offset attribute allows you to offset a number by any desired value. - * Let's take a look at an example: - * - *
- * 
- * 
- * 
- * - * Notice that we are still using two plural categories(one, other), but we added - * three explicit number rules 0, 1 and 2. - * When one person, perhaps John, views the document, "John is viewing" will be shown. - * When three people view the document, no explicit number rule is found, so - * an offset of 2 is taken off 3, and Angular uses 1 to decide the plural category. - * In this case, plural category 'one' is matched and "John, Marry and one other person are viewing" - * is shown. - * - * Note that when you specify offsets, you must provide explicit number rules for - * numbers from 0 up to and including the offset. If you use an offset of 3, for example, - * you must provide explicit number rules for 0, 1, 2 and 3. You must also provide plural strings for - * plural categories "one" and "other". - * - * @param {string|expression} count The variable to be bounded to. - * @param {string} when The mapping between plural category to its corresponding strings. - * @param {number=} offset Offset to deduct from the total number. - * - * @example - - - -
- Person 1:
- Person 2:
- Number of People:
- - - Without Offset: - -
- - - With Offset(2): - - -
-
- - it('should show correct pluralized string', function() { - expect(element('.doc-example-live ng-pluralize:first').text()). - toBe('1 person is viewing.'); - expect(element('.doc-example-live ng-pluralize:last').text()). - toBe('Igor is viewing.'); - - using('.doc-example-live').input('personCount').enter('0'); - expect(element('.doc-example-live ng-pluralize:first').text()). - toBe('Nobody is viewing.'); - expect(element('.doc-example-live ng-pluralize:last').text()). - toBe('Nobody is viewing.'); - - using('.doc-example-live').input('personCount').enter('2'); - expect(element('.doc-example-live ng-pluralize:first').text()). - toBe('2 people are viewing.'); - expect(element('.doc-example-live ng-pluralize:last').text()). - toBe('Igor and Misko are viewing.'); - - using('.doc-example-live').input('personCount').enter('3'); - expect(element('.doc-example-live ng-pluralize:first').text()). - toBe('3 people are viewing.'); - expect(element('.doc-example-live ng-pluralize:last').text()). - toBe('Igor, Misko and one other person are viewing.'); - - using('.doc-example-live').input('personCount').enter('4'); - expect(element('.doc-example-live ng-pluralize:first').text()). - toBe('4 people are viewing.'); - expect(element('.doc-example-live ng-pluralize:last').text()). - toBe('Igor, Misko and 2 other people are viewing.'); - }); - - it('should show data-binded names', function() { - using('.doc-example-live').input('personCount').enter('4'); - expect(element('.doc-example-live ng-pluralize:last').text()). - toBe('Igor, Misko and 2 other people are viewing.'); - - using('.doc-example-live').input('person1').enter('Di'); - using('.doc-example-live').input('person2').enter('Vojta'); - expect(element('.doc-example-live ng-pluralize:last').text()). - toBe('Di, Vojta and 2 other people are viewing.'); - }); - -
- */ -var ngPluralizeDirective = ['$locale', '$interpolate', function($locale, $interpolate) { - var BRACE = /{}/g; - return { - restrict: 'EA', - link: function(scope, element, attr) { - var numberExp = attr.count, - whenExp = attr.$attr.when && element.attr(attr.$attr.when), // we have {{}} in attrs - offset = attr.offset || 0, - whens = scope.$eval(whenExp) || {}, - whensExpFns = {}, - startSymbol = $interpolate.startSymbol(), - endSymbol = $interpolate.endSymbol(), - isWhen = /^when(Minus)?(.+)$/; - - forEach(attr, function(expression, attributeName) { - if (isWhen.test(attributeName)) { - whens[lowercase(attributeName.replace('when', '').replace('Minus', '-'))] = - element.attr(attr.$attr[attributeName]); - } - }); - forEach(whens, function(expression, key) { - whensExpFns[key] = - $interpolate(expression.replace(BRACE, startSymbol + numberExp + '-' + - offset + endSymbol)); - }); - - scope.$watch(function ngPluralizeWatch() { - var value = parseFloat(scope.$eval(numberExp)); - - if (!isNaN(value)) { - //if explicit number rule such as 1, 2, 3... is defined, just use it. Otherwise, - //check it against pluralization rules in $locale service - if (!(value in whens)) value = $locale.pluralCat(value - offset); - return whensExpFns[value](scope, element, true); - } else { - return ''; - } - }, function ngPluralizeWatchAction(newVal) { - element.text(newVal); - }); - } - }; -}]; - -/** - * @ngdoc directive - * @name ng.directive:ngRepeat - * - * @description - * The `ngRepeat` directive instantiates a template once per item from a collection. Each template - * instance gets its own scope, where the given loop variable is set to the current collection item, - * and `$index` is set to the item index or key. - * - * Special properties are exposed on the local scope of each template instance, including: - * - * | Variable | Type | Details | - * |-----------|-----------------|-----------------------------------------------------------------------------| - * | `$index` | {@type number} | iterator offset of the repeated element (0..length-1) | - * | `$first` | {@type boolean} | true if the repeated element is first in the iterator. | - * | `$middle` | {@type boolean} | true if the repeated element is between the first and last in the iterator. | - * | `$last` | {@type boolean} | true if the repeated element is last in the iterator. | - * | `$even` | {@type boolean} | true if the iterator position `$index` is even (otherwise false). | - * | `$odd` | {@type boolean} | true if the iterator position `$index` is odd (otherwise false). | - * - * - * # Special repeat start and end points - * To repeat a series of elements instead of just one parent element, ngRepeat (as well as other ng directives) supports extending - * the range of the repeater by defining explicit start and end points by using **ng-repeat-start** and **ng-repeat-end** respectively. - * The **ng-repeat-start** directive works the same as **ng-repeat**, but will repeat all the HTML code (including the tag it's defined on) - * up to and including the ending HTML tag where **ng-repeat-end** is placed. - * - * The example below makes use of this feature: - *
- *   
- * Header {{ item }} - *
- *
- * Body {{ item }} - *
- *
- * Footer {{ item }} - *
- *
- * - * And with an input of {@type ['A','B']} for the items variable in the example above, the output will evaluate to: - *
- *   
- * Header A - *
- *
- * Body A - *
- *
- * Footer A - *
- *
- * Header B - *
- *
- * Body B - *
- *
- * Footer B - *
- *
- * - * The custom start and end points for ngRepeat also support all other HTML directive syntax flavors provided in AngularJS (such - * as **data-ng-repeat-start**, **x-ng-repeat-start** and **ng:repeat-start**). - * - * @animations - * enter - when a new item is added to the list or when an item is revealed after a filter - * leave - when an item is removed from the list or when an item is filtered out - * move - when an adjacent item is filtered out causing a reorder or when the item contents are reordered - * - * @element ANY - * @scope - * @priority 1000 - * @param {repeat_expression} ngRepeat The expression indicating how to enumerate a collection. These - * formats are currently supported: - * - * * `variable in expression` – where variable is the user defined loop variable and `expression` - * is a scope expression giving the collection to enumerate. - * - * For example: `album in artist.albums`. - * - * * `(key, value) in expression` – where `key` and `value` can be any user defined identifiers, - * and `expression` is the scope expression giving the collection to enumerate. - * - * For example: `(name, age) in {'adam':10, 'amalie':12}`. - * - * * `variable in expression track by tracking_expression` – You can also provide an optional tracking function - * which can be used to associate the objects in the collection with the DOM elements. If no tracking function - * is specified the ng-repeat associates elements by identity in the collection. It is an error to have - * more than one tracking function to resolve to the same key. (This would mean that two distinct objects are - * mapped to the same DOM element, which is not possible.) Filters should be applied to the expression, - * before specifying a tracking expression. - * - * For example: `item in items` is equivalent to `item in items track by $id(item)'. This implies that the DOM elements - * will be associated by item identity in the array. - * - * For example: `item in items track by $id(item)`. A built in `$id()` function can be used to assign a unique - * `$$hashKey` property to each item in the array. This property is then used as a key to associated DOM elements - * with the corresponding item in the array by identity. Moving the same object in array would move the DOM - * element in the same way in the DOM. - * - * For example: `item in items track by item.id` is a typical pattern when the items come from the database. In this - * case the object identity does not matter. Two objects are considered equivalent as long as their `id` - * property is same. - * - * For example: `item in items | filter:searchText track by item.id` is a pattern that might be used to apply a filter - * to items in conjunction with a tracking expression. - * - * @example - * This example initializes the scope to a list of names and - * then uses `ngRepeat` to display every person: - - -
- I have {{friends.length}} friends. They are: - -
    -
  • - [{{$index + 1}}] {{friend.name}} who is {{friend.age}} years old. -
  • -
-
-
- - .example-animate-container { - background:white; - border:1px solid black; - list-style:none; - margin:0; - padding:0 10px; - } - - .animate-repeat { - line-height:40px; - list-style:none; - box-sizing:border-box; - } - - .animate-repeat.ng-move, - .animate-repeat.ng-enter, - .animate-repeat.ng-leave { - -webkit-transition:all linear 0.5s; - transition:all linear 0.5s; - } - - .animate-repeat.ng-leave.ng-leave-active, - .animate-repeat.ng-move, - .animate-repeat.ng-enter { - opacity:0; - max-height:0; - } - - .animate-repeat.ng-leave, - .animate-repeat.ng-move.ng-move-active, - .animate-repeat.ng-enter.ng-enter-active { - opacity:1; - max-height:40px; - } - - - it('should render initial data set', function() { - var r = using('.doc-example-live').repeater('ul li'); - expect(r.count()).toBe(10); - expect(r.row(0)).toEqual(["1","John","25"]); - expect(r.row(1)).toEqual(["2","Jessie","30"]); - expect(r.row(9)).toEqual(["10","Samantha","60"]); - expect(binding('friends.length')).toBe("10"); - }); - - it('should update repeater when filter predicate changes', function() { - var r = using('.doc-example-live').repeater('ul li'); - expect(r.count()).toBe(10); - - input('q').enter('ma'); - - expect(r.count()).toBe(2); - expect(r.row(0)).toEqual(["1","Mary","28"]); - expect(r.row(1)).toEqual(["2","Samantha","60"]); - }); - -
- */ -var ngRepeatDirective = ['$parse', '$animate', function($parse, $animate) { - var NG_REMOVED = '$$NG_REMOVED'; - var ngRepeatMinErr = minErr('ngRepeat'); - return { - transclude: 'element', - priority: 1000, - terminal: true, - $$tlb: true, - link: function($scope, $element, $attr, ctrl, $transclude){ - var expression = $attr.ngRepeat; - var match = expression.match(/^\s*(.+)\s+in\s+([\r\n\s\S]*?)\s*(\s+track\s+by\s+(.+)\s*)?$/), - trackByExp, trackByExpGetter, trackByIdExpFn, trackByIdArrayFn, trackByIdObjFn, - lhs, rhs, valueIdentifier, keyIdentifier, - hashFnLocals = {$id: hashKey}; - - if (!match) { - throw ngRepeatMinErr('iexp', "Expected expression in form of '_item_ in _collection_[ track by _id_]' but got '{0}'.", - expression); - } - - lhs = match[1]; - rhs = match[2]; - trackByExp = match[4]; - - if (trackByExp) { - trackByExpGetter = $parse(trackByExp); - trackByIdExpFn = function(key, value, index) { - // assign key, value, and $index to the locals so that they can be used in hash functions - if (keyIdentifier) hashFnLocals[keyIdentifier] = key; - hashFnLocals[valueIdentifier] = value; - hashFnLocals.$index = index; - return trackByExpGetter($scope, hashFnLocals); - }; - } else { - trackByIdArrayFn = function(key, value) { - return hashKey(value); - }; - trackByIdObjFn = function(key) { - return key; - }; - } - - match = lhs.match(/^(?:([\$\w]+)|\(([\$\w]+)\s*,\s*([\$\w]+)\))$/); - if (!match) { - throw ngRepeatMinErr('iidexp', "'_item_' in '_item_ in _collection_' should be an identifier or '(_key_, _value_)' expression, but got '{0}'.", - lhs); - } - valueIdentifier = match[3] || match[1]; - keyIdentifier = match[2]; - - // Store a list of elements from previous run. This is a hash where key is the item from the - // iterator, and the value is objects with following properties. - // - scope: bound scope - // - element: previous element. - // - index: position - var lastBlockMap = {}; - - //watch props - $scope.$watchCollection(rhs, function ngRepeatAction(collection){ - var index, length, - previousNode = $element[0], // current position of the node - nextNode, - // Same as lastBlockMap but it has the current state. It will become the - // lastBlockMap on the next iteration. - nextBlockMap = {}, - arrayLength, - childScope, - key, value, // key/value of iteration - trackById, - trackByIdFn, - collectionKeys, - block, // last object information {scope, element, id} - nextBlockOrder = [], - elementsToRemove; - - - if (isArrayLike(collection)) { - collectionKeys = collection; - trackByIdFn = trackByIdExpFn || trackByIdArrayFn; - } else { - trackByIdFn = trackByIdExpFn || trackByIdObjFn; - // if object, extract keys, sort them and use to determine order of iteration over obj props - collectionKeys = []; - for (key in collection) { - if (collection.hasOwnProperty(key) && key.charAt(0) != '$') { - collectionKeys.push(key); - } - } - collectionKeys.sort(); - } - - arrayLength = collectionKeys.length; - - // locate existing items - length = nextBlockOrder.length = collectionKeys.length; - for(index = 0; index < length; index++) { - key = (collection === collectionKeys) ? index : collectionKeys[index]; - value = collection[key]; - trackById = trackByIdFn(key, value, index); - assertNotHasOwnProperty(trackById, '`track by` id'); - if(lastBlockMap.hasOwnProperty(trackById)) { - block = lastBlockMap[trackById]; - delete lastBlockMap[trackById]; - nextBlockMap[trackById] = block; - nextBlockOrder[index] = block; - } else if (nextBlockMap.hasOwnProperty(trackById)) { - // restore lastBlockMap - forEach(nextBlockOrder, function(block) { - if (block && block.scope) lastBlockMap[block.id] = block; - }); - // This is a duplicate and we need to throw an error - throw ngRepeatMinErr('dupes', "Duplicates in a repeater are not allowed. Use 'track by' expression to specify unique keys. Repeater: {0}, Duplicate key: {1}", - expression, trackById); - } else { - // new never before seen block - nextBlockOrder[index] = { id: trackById }; - nextBlockMap[trackById] = false; - } - } - - // remove existing items - for (key in lastBlockMap) { - // lastBlockMap is our own object so we don't need to use special hasOwnPropertyFn - if (lastBlockMap.hasOwnProperty(key)) { - block = lastBlockMap[key]; - elementsToRemove = getBlockElements(block.clone); - $animate.leave(elementsToRemove); - forEach(elementsToRemove, function(element) { element[NG_REMOVED] = true; }); - block.scope.$destroy(); - } - } - - // we are not using forEach for perf reasons (trying to avoid #call) - for (index = 0, length = collectionKeys.length; index < length; index++) { - key = (collection === collectionKeys) ? index : collectionKeys[index]; - value = collection[key]; - block = nextBlockOrder[index]; - if (nextBlockOrder[index - 1]) previousNode = getBlockEnd(nextBlockOrder[index - 1]); - - if (block.scope) { - // if we have already seen this object, then we need to reuse the - // associated scope/element - childScope = block.scope; - - nextNode = previousNode; - do { - nextNode = nextNode.nextSibling; - } while(nextNode && nextNode[NG_REMOVED]); - - if (getBlockStart(block) != nextNode) { - // existing item which got moved - $animate.move(getBlockElements(block.clone), null, jqLite(previousNode)); - } - previousNode = getBlockEnd(block); - } else { - // new item which we don't know about - childScope = $scope.$new(); - } - - childScope[valueIdentifier] = value; - if (keyIdentifier) childScope[keyIdentifier] = key; - childScope.$index = index; - childScope.$first = (index === 0); - childScope.$last = (index === (arrayLength - 1)); - childScope.$middle = !(childScope.$first || childScope.$last); - // jshint bitwise: false - childScope.$odd = !(childScope.$even = (index&1) === 0); - // jshint bitwise: true - - if (!block.scope) { - $transclude(childScope, function(clone) { - clone[clone.length++] = document.createComment(' end ngRepeat: ' + expression + ' '); - $animate.enter(clone, null, jqLite(previousNode)); - previousNode = clone; - block.scope = childScope; - // Note: We only need the first/last node of the cloned nodes. - // However, we need to keep the reference to the jqlite wrapper as it might be changed later - // by a directive with templateUrl when it's template arrives. - block.clone = clone; - nextBlockMap[block.id] = block; - }); - } - } - lastBlockMap = nextBlockMap; - }); - } - }; - - function getBlockStart(block) { - return block.clone[0]; - } - - function getBlockEnd(block) { - return block.clone[block.clone.length - 1]; - } -}]; - -/** - * @ngdoc directive - * @name ng.directive:ngShow - * - * @description - * The `ngShow` directive shows or hides the given HTML element based on the expression - * provided to the ngShow attribute. The element is shown or hidden by removing or adding - * the `ng-hide` CSS class onto the element. The `.ng-hide` CSS class is predefined - * in AngularJS and sets the display style to none (using an !important flag). - * For CSP mode please add `angular-csp.css` to your html file (see {@link ng.directive:ngCsp ngCsp}). - * - *
- * 
- * 
- * - * - *
- *
- * - * When the ngShow expression evaluates to false then the ng-hide CSS class is added to the class attribute - * on the element causing it to become hidden. When true, the ng-hide CSS class is removed - * from the element causing the element not to appear hidden. - * - * ## Why is !important used? - * - * You may be wondering why !important is used for the .ng-hide CSS class. This is because the `.ng-hide` selector - * can be easily overridden by heavier selectors. For example, something as simple - * as changing the display style on a HTML list item would make hidden elements appear visible. - * This also becomes a bigger issue when dealing with CSS frameworks. - * - * By using !important, the show and hide behavior will work as expected despite any clash between CSS selector - * specificity (when !important isn't used with any conflicting styles). If a developer chooses to override the - * styling to change how to hide an element then it is just a matter of using !important in their own CSS code. - * - * ### Overriding .ng-hide - * - * If you wish to change the hide behavior with ngShow/ngHide then this can be achieved by - * restating the styles for the .ng-hide class in CSS: - *
- * .ng-hide {
- *   //!annotate CSS Specificity|Not to worry, this will override the AngularJS default...
- *   display:block!important;
- *
- *   //this is just another form of hiding an element
- *   position:absolute;
- *   top:-9999px;
- *   left:-9999px;
- * }
- * 
- * - * Just remember to include the important flag so the CSS override will function. - * - * ## A note about animations with ngShow - * - * Animations in ngShow/ngHide work with the show and hide events that are triggered when the directive expression - * is true and false. This system works like the animation system present with ngClass except that - * you must also include the !important flag to override the display property - * so that you can perform an animation when the element is hidden during the time of the animation. - * - *
- * //
- * //a working example can be found at the bottom of this page
- * //
- * .my-element.ng-hide-add, .my-element.ng-hide-remove {
- *   transition:0.5s linear all;
- *   display:block!important;
- * }
- *
- * .my-element.ng-hide-add { ... }
- * .my-element.ng-hide-add.ng-hide-add-active { ... }
- * .my-element.ng-hide-remove { ... }
- * .my-element.ng-hide-remove.ng-hide-remove-active { ... }
- * 
- * - * @animations - * addClass: .ng-hide - happens after the ngShow expression evaluates to a truthy value and the just before contents are set to visible - * removeClass: .ng-hide - happens after the ngShow expression evaluates to a non truthy value and just before the contents are set to hidden - * - * @element ANY - * @param {expression} ngShow If the {@link guide/expression expression} is truthy - * then the element is shown or hidden respectively. - * - * @example - - - Click me:
-
- Show: -
- I show up when your checkbox is checked. -
-
-
- Hide: -
- I hide when your checkbox is checked. -
-
-
- - .animate-show { - -webkit-transition:all linear 0.5s; - transition:all linear 0.5s; - line-height:20px; - opacity:1; - padding:10px; - border:1px solid black; - background:white; - } - - .animate-show.ng-hide-add, - .animate-show.ng-hide-remove { - display:block!important; - } - - .animate-show.ng-hide { - line-height:0; - opacity:0; - padding:0 10px; - } - - .check-element { - padding:10px; - border:1px solid black; - background:white; - } - - - it('should check ng-show / ng-hide', function() { - expect(element('.doc-example-live span:first:hidden').count()).toEqual(1); - expect(element('.doc-example-live span:last:visible').count()).toEqual(1); - - input('checked').check(); - - expect(element('.doc-example-live span:first:visible').count()).toEqual(1); - expect(element('.doc-example-live span:last:hidden').count()).toEqual(1); - }); - -
- */ -var ngShowDirective = ['$animate', function($animate) { - return function(scope, element, attr) { - scope.$watch(attr.ngShow, function ngShowWatchAction(value){ - $animate[toBoolean(value) ? 'removeClass' : 'addClass'](element, 'ng-hide'); - }); - }; -}]; - - -/** - * @ngdoc directive - * @name ng.directive:ngHide - * - * @description - * The `ngHide` directive shows or hides the given HTML element based on the expression - * provided to the ngHide attribute. The element is shown or hidden by removing or adding - * the `ng-hide` CSS class onto the element. The `.ng-hide` CSS class is predefined - * in AngularJS and sets the display style to none (using an !important flag). - * For CSP mode please add `angular-csp.css` to your html file (see {@link ng.directive:ngCsp ngCsp}). - * - *
- * 
- * 
- * - * - *
- *
- * - * When the ngHide expression evaluates to true then the .ng-hide CSS class is added to the class attribute - * on the element causing it to become hidden. When false, the ng-hide CSS class is removed - * from the element causing the element not to appear hidden. - * - * ## Why is !important used? - * - * You may be wondering why !important is used for the .ng-hide CSS class. This is because the `.ng-hide` selector - * can be easily overridden by heavier selectors. For example, something as simple - * as changing the display style on a HTML list item would make hidden elements appear visible. - * This also becomes a bigger issue when dealing with CSS frameworks. - * - * By using !important, the show and hide behavior will work as expected despite any clash between CSS selector - * specificity (when !important isn't used with any conflicting styles). If a developer chooses to override the - * styling to change how to hide an element then it is just a matter of using !important in their own CSS code. - * - * ### Overriding .ng-hide - * - * If you wish to change the hide behavior with ngShow/ngHide then this can be achieved by - * restating the styles for the .ng-hide class in CSS: - *
- * .ng-hide {
- *   //!annotate CSS Specificity|Not to worry, this will override the AngularJS default...
- *   display:block!important;
- *
- *   //this is just another form of hiding an element
- *   position:absolute;
- *   top:-9999px;
- *   left:-9999px;
- * }
- * 
- * - * Just remember to include the important flag so the CSS override will function. - * - * ## A note about animations with ngHide - * - * Animations in ngShow/ngHide work with the show and hide events that are triggered when the directive expression - * is true and false. This system works like the animation system present with ngClass, except that - * you must also include the !important flag to override the display property so - * that you can perform an animation when the element is hidden during the time of the animation. - * - *
- * //
- * //a working example can be found at the bottom of this page
- * //
- * .my-element.ng-hide-add, .my-element.ng-hide-remove {
- *   transition:0.5s linear all;
- *   display:block!important;
- * }
- *
- * .my-element.ng-hide-add { ... }
- * .my-element.ng-hide-add.ng-hide-add-active { ... }
- * .my-element.ng-hide-remove { ... }
- * .my-element.ng-hide-remove.ng-hide-remove-active { ... }
- * 
- * - * @animations - * removeClass: .ng-hide - happens after the ngHide expression evaluates to a truthy value and just before the contents are set to hidden - * addClass: .ng-hide - happens after the ngHide expression evaluates to a non truthy value and just before the contents are set to visible - * - * @element ANY - * @param {expression} ngHide If the {@link guide/expression expression} is truthy then - * the element is shown or hidden respectively. - * - * @example - - - Click me:
-
- Show: -
- I show up when your checkbox is checked. -
-
-
- Hide: -
- I hide when your checkbox is checked. -
-
-
- - .animate-hide { - -webkit-transition:all linear 0.5s; - transition:all linear 0.5s; - line-height:20px; - opacity:1; - padding:10px; - border:1px solid black; - background:white; - } - - .animate-hide.ng-hide-add, - .animate-hide.ng-hide-remove { - display:block!important; - } - - .animate-hide.ng-hide { - line-height:0; - opacity:0; - padding:0 10px; - } - - .check-element { - padding:10px; - border:1px solid black; - background:white; - } - - - it('should check ng-show / ng-hide', function() { - expect(element('.doc-example-live .check-element:first:hidden').count()).toEqual(1); - expect(element('.doc-example-live .check-element:last:visible').count()).toEqual(1); - - input('checked').check(); - - expect(element('.doc-example-live .check-element:first:visible').count()).toEqual(1); - expect(element('.doc-example-live .check-element:last:hidden').count()).toEqual(1); - }); - -
- */ -var ngHideDirective = ['$animate', function($animate) { - return function(scope, element, attr) { - scope.$watch(attr.ngHide, function ngHideWatchAction(value){ - $animate[toBoolean(value) ? 'addClass' : 'removeClass'](element, 'ng-hide'); - }); - }; -}]; - -/** - * @ngdoc directive - * @name ng.directive:ngStyle - * @restrict AC - * - * @description - * The `ngStyle` directive allows you to set CSS style on an HTML element conditionally. - * - * @element ANY - * @param {expression} ngStyle {@link guide/expression Expression} which evals to an - * object whose keys are CSS style names and values are corresponding values for those CSS - * keys. - * - * @example - - - - -
- Sample Text -
myStyle={{myStyle}}
-
- - span { - color: black; - } - - - it('should check ng-style', function() { - expect(element('.doc-example-live span').css('color')).toBe('rgb(0, 0, 0)'); - element('.doc-example-live :button[value=set]').click(); - expect(element('.doc-example-live span').css('color')).toBe('rgb(255, 0, 0)'); - element('.doc-example-live :button[value=clear]').click(); - expect(element('.doc-example-live span').css('color')).toBe('rgb(0, 0, 0)'); - }); - -
- */ -var ngStyleDirective = ngDirective(function(scope, element, attr) { - scope.$watch(attr.ngStyle, function ngStyleWatchAction(newStyles, oldStyles) { - if (oldStyles && (newStyles !== oldStyles)) { - forEach(oldStyles, function(val, style) { element.css(style, '');}); - } - if (newStyles) element.css(newStyles); - }, true); -}); - -/** - * @ngdoc directive - * @name ng.directive:ngSwitch - * @restrict EA - * - * @description - * The `ngSwitch` directive is used to conditionally swap DOM structure on your template based on a scope expression. - * Elements within `ngSwitch` but without `ngSwitchWhen` or `ngSwitchDefault` directives will be preserved at the location - * as specified in the template. - * - * The directive itself works similar to ngInclude, however, instead of downloading template code (or loading it - * from the template cache), `ngSwitch` simply choses one of the nested elements and makes it visible based on which element - * matches the value obtained from the evaluated expression. In other words, you define a container element - * (where you place the directive), place an expression on the **`on="..."` attribute** - * (or the **`ng-switch="..."` attribute**), define any inner elements inside of the directive and place - * a when attribute per element. The when attribute is used to inform ngSwitch which element to display when the on - * expression is evaluated. If a matching expression is not found via a when attribute then an element with the default - * attribute is displayed. - * - *
- * Be aware that the attribute values to match against cannot be expressions. They are interpreted - * as literal string values to match against. - * For example, **`ng-switch-when="someVal"`** will match against the string `"someVal"` not against the - * value of the expression `$scope.someVal`. - *
- - * @animations - * enter - happens after the ngSwitch contents change and the matched child element is placed inside the container - * leave - happens just after the ngSwitch contents change and just before the former contents are removed from the DOM - * - * @usage - * - * ... - * ... - * ... - * - * - * - * @scope - * @priority 800 - * @param {*} ngSwitch|on expression to match against ng-switch-when. - * @paramDescription - * On child elements add: - * - * * `ngSwitchWhen`: the case statement to match against. If match then this - * case will be displayed. If the same match appears multiple times, all the - * elements will be displayed. - * * `ngSwitchDefault`: the default case when no other case match. If there - * are multiple default cases, all of them will be displayed when no other - * case match. - * - * - * @example - - -
- - selection={{selection}} -
-
-
Settings Div
-
Home Span
-
default
-
-
-
- - function Ctrl($scope) { - $scope.items = ['settings', 'home', 'other']; - $scope.selection = $scope.items[0]; - } - - - .animate-switch-container { - position:relative; - background:white; - border:1px solid black; - height:40px; - overflow:hidden; - } - - .animate-switch { - padding:10px; - } - - .animate-switch.ng-animate { - -webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; - transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; - - position:absolute; - top:0; - left:0; - right:0; - bottom:0; - } - - .animate-switch.ng-leave.ng-leave-active, - .animate-switch.ng-enter { - top:-50px; - } - .animate-switch.ng-leave, - .animate-switch.ng-enter.ng-enter-active { - top:0; - } - - - it('should start in settings', function() { - expect(element('.doc-example-live [ng-switch]').text()).toMatch(/Settings Div/); - }); - it('should change to home', function() { - select('selection').option('home'); - expect(element('.doc-example-live [ng-switch]').text()).toMatch(/Home Span/); - }); - it('should select default', function() { - select('selection').option('other'); - expect(element('.doc-example-live [ng-switch]').text()).toMatch(/default/); - }); - -
- */ -var ngSwitchDirective = ['$animate', function($animate) { - return { - restrict: 'EA', - require: 'ngSwitch', - - // asks for $scope to fool the BC controller module - controller: ['$scope', function ngSwitchController() { - this.cases = {}; - }], - link: function(scope, element, attr, ngSwitchController) { - var watchExpr = attr.ngSwitch || attr.on, - selectedTranscludes, - selectedElements, - selectedScopes = []; - - scope.$watch(watchExpr, function ngSwitchWatchAction(value) { - for (var i= 0, ii=selectedScopes.length; i - - -
-
-
- {{text}} -
-
- - it('should have transcluded', function() { - input('title').enter('TITLE'); - input('text').enter('TEXT'); - expect(binding('title')).toEqual('TITLE'); - expect(binding('text')).toEqual('TEXT'); - }); - - - * - */ -var ngTranscludeDirective = ngDirective({ - controller: ['$element', '$transclude', function($element, $transclude) { - if (!$transclude) { - throw minErr('ngTransclude')('orphan', - 'Illegal use of ngTransclude directive in the template! ' + - 'No parent directive that requires a transclusion found. ' + - 'Element: {0}', - startingTag($element)); - } - - // remember the transclusion fn but call it during linking so that we don't process transclusion before directives on - // the parent element even when the transclusion replaces the current element. (we can't use priority here because - // that applies only to compile fns and not controllers - this.$transclude = $transclude; - }], - - link: function($scope, $element, $attrs, controller) { - controller.$transclude(function(clone) { - $element.empty(); - $element.append(clone); - }); - } -}); - -/** - * @ngdoc directive - * @name ng.directive:script - * @restrict E - * - * @description - * Load content of a script tag, with type `text/ng-template`, into `$templateCache`, so that the - * template can be used by `ngInclude`, `ngView` or directive templates. - * - * @param {'text/ng-template'} type must be set to `'text/ng-template'` - * - * @example - - - - - Load inlined template -
-
- - it('should load template defined inside script tag', function() { - element('#tpl-link').click(); - expect(element('#tpl-content').text()).toMatch(/Content of the template/); - }); - -
- */ -var scriptDirective = ['$templateCache', function($templateCache) { - return { - restrict: 'E', - terminal: true, - compile: function(element, attr) { - if (attr.type == 'text/ng-template') { - var templateUrl = attr.id, - // IE is not consistent, in scripts we have to read .text but in other nodes we have to read .textContent - text = element[0].text; - - $templateCache.put(templateUrl, text); - } - } - }; -}]; - -var ngOptionsMinErr = minErr('ngOptions'); -/** - * @ngdoc directive - * @name ng.directive:select - * @restrict E - * - * @description - * HTML `SELECT` element with angular data-binding. - * - * # `ngOptions` - * - * The `ngOptions` attribute can be used to dynamically generate a list of `` - * DOM element. - * * `trackexpr`: Used when working with an array of objects. The result of this expression will be - * used to identify the objects in the array. The `trackexpr` will most likely refer to the - * `value` variable (e.g. `value.propertyName`). - * - * @example - - - -
-
    -
  • - Name: - [X] -
  • -
  • - [add] -
  • -
-
- Color (null not allowed): -
- - Color (null allowed): - - -
- - Color grouped by shade: -
- - - Select bogus.
-
- Currently selected: {{ {selected_color:color} }} -
-
-
-
- - it('should check ng-options', function() { - expect(binding('{selected_color:color}')).toMatch('red'); - select('color').option('0'); - expect(binding('{selected_color:color}')).toMatch('black'); - using('.nullable').select('color').option(''); - expect(binding('{selected_color:color}')).toMatch('null'); - }); - -
- */ - -var ngOptionsDirective = valueFn({ terminal: true }); -// jshint maxlen: false -var selectDirective = ['$compile', '$parse', function($compile, $parse) { - //0000111110000000000022220000000000000000000000333300000000000000444444444444444000000000555555555555555000000066666666666666600000000000000007777000000000000000000088888 - var NG_OPTIONS_REGEXP = /^\s*(.*?)(?:\s+as\s+(.*?))?(?:\s+group\s+by\s+(.*))?\s+for\s+(?:([\$\w][\$\w]*)|(?:\(\s*([\$\w][\$\w]*)\s*,\s*([\$\w][\$\w]*)\s*\)))\s+in\s+(.*?)(?:\s+track\s+by\s+(.*?))?$/, - nullModelCtrl = {$setViewValue: noop}; -// jshint maxlen: 100 - - return { - restrict: 'E', - require: ['select', '?ngModel'], - controller: ['$element', '$scope', '$attrs', function($element, $scope, $attrs) { - var self = this, - optionsMap = {}, - ngModelCtrl = nullModelCtrl, - nullOption, - unknownOption; - - - self.databound = $attrs.ngModel; - - - self.init = function(ngModelCtrl_, nullOption_, unknownOption_) { - ngModelCtrl = ngModelCtrl_; - nullOption = nullOption_; - unknownOption = unknownOption_; - }; - - - self.addOption = function(value) { - assertNotHasOwnProperty(value, '"option value"'); - optionsMap[value] = true; - - if (ngModelCtrl.$viewValue == value) { - $element.val(value); - if (unknownOption.parent()) unknownOption.remove(); - } - }; - - - self.removeOption = function(value) { - if (this.hasOption(value)) { - delete optionsMap[value]; - if (ngModelCtrl.$viewValue == value) { - this.renderUnknownOption(value); - } - } - }; - - - self.renderUnknownOption = function(val) { - var unknownVal = '? ' + hashKey(val) + ' ?'; - unknownOption.val(unknownVal); - $element.prepend(unknownOption); - $element.val(unknownVal); - unknownOption.prop('selected', true); // needed for IE - }; - - - self.hasOption = function(value) { - return optionsMap.hasOwnProperty(value); - }; - - $scope.$on('$destroy', function() { - // disable unknown option so that we don't do work when the whole select is being destroyed - self.renderUnknownOption = noop; - }); - }], - - link: function(scope, element, attr, ctrls) { - // if ngModel is not defined, we don't need to do anything - if (!ctrls[1]) return; - - var selectCtrl = ctrls[0], - ngModelCtrl = ctrls[1], - multiple = attr.multiple, - optionsExp = attr.ngOptions, - nullOption = false, // if false, user will not be able to select it (used by ngOptions) - emptyOption, - // we can't just jqLite('"; - - // Support: IE8 - // Boolean attributes and "value" are not treated correctly - if ( !div.querySelectorAll("[selected]").length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); - } - - // Webkit/Opera - :checked should return selected option elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - // IE8 throws error here and will not see later tests - if ( !div.querySelectorAll(":checked").length ) { - rbuggyQSA.push(":checked"); - } - }); - - assert(function( div ) { - - // Support: Opera 10-12/IE8 - // ^= $= *= and empty values - // Should not select anything - // Support: Windows 8 Native Apps - // The type attribute is restricted during .innerHTML assignment - var input = doc.createElement("input"); - input.setAttribute( "type", "hidden" ); - div.appendChild( input ).setAttribute( "t", "" ); - - if ( div.querySelectorAll("[t^='']").length ) { - rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); - } - - // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) - // IE8 throws error here and will not see later tests - if ( !div.querySelectorAll(":enabled").length ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Opera 10-11 does not throw on post-comma invalid pseudos - div.querySelectorAll("*,:x"); - rbuggyQSA.push(",.*:"); - }); - } - - if ( (support.matchesSelector = rnative.test( (matches = docElem.webkitMatchesSelector || - docElem.mozMatchesSelector || - docElem.oMatchesSelector || - docElem.msMatchesSelector) )) ) { - - assert(function( div ) { - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( div, "div" ); - - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( div, "[s!='']:x" ); - rbuggyMatches.push( "!=", pseudos ); - }); - } - - rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); - rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); - - /* Contains - ---------------------------------------------------------------------- */ - - // Element contains another - // Purposefully does not implement inclusive descendent - // As in, an element does not contain itself - contains = rnative.test( docElem.contains ) || docElem.compareDocumentPosition ? - function( a, b ) { - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - )); - } : - function( a, b ) { - if ( b ) { - while ( (b = b.parentNode) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - /* Sorting - ---------------------------------------------------------------------- */ - - // Document order sorting - sortOrder = docElem.compareDocumentPosition ? - function( a, b ) { - - // Flag for duplicate removal - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - var compare = b.compareDocumentPosition && a.compareDocumentPosition && a.compareDocumentPosition( b ); - - if ( compare ) { - // Disconnected nodes - if ( compare & 1 || - (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { - - // Choose the first element that is related to our preferred document - if ( a === doc || contains(preferredDoc, a) ) { - return -1; - } - if ( b === doc || contains(preferredDoc, b) ) { - return 1; - } - - // Maintain original order - return sortInput ? - ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) : - 0; - } - - return compare & 4 ? -1 : 1; - } - - // Not directly comparable, sort on existence of method - return a.compareDocumentPosition ? -1 : 1; - } : - function( a, b ) { - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // Exit early if the nodes are identical - if ( a === b ) { - hasDuplicate = true; - return 0; - - // Parentless nodes are either documents or disconnected - } else if ( !aup || !bup ) { - return a === doc ? -1 : - b === doc ? 1 : - aup ? -1 : - bup ? 1 : - sortInput ? - ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) : - 0; - - // If the nodes are siblings, we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - } - - // Otherwise we need full lists of their ancestors for comparison - cur = a; - while ( (cur = cur.parentNode) ) { - ap.unshift( cur ); - } - cur = b; - while ( (cur = cur.parentNode) ) { - bp.unshift( cur ); - } - - // Walk down the tree looking for a discrepancy - while ( ap[i] === bp[i] ) { - i++; - } - - return i ? - // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[i], bp[i] ) : - - // Otherwise nodes in our document sort first - ap[i] === preferredDoc ? -1 : - bp[i] === preferredDoc ? 1 : - 0; - }; - - return doc; -}; - -Sizzle.matches = function( expr, elements ) { - return Sizzle( expr, null, null, elements ); -}; - -Sizzle.matchesSelector = function( elem, expr ) { - // Set document vars if needed - if ( ( elem.ownerDocument || elem ) !== document ) { - setDocument( elem ); - } - - // Make sure that attribute selectors are quoted - expr = expr.replace( rattributeQuotes, "='$1']" ); - - if ( support.matchesSelector && documentIsHTML && - ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && - ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { - - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch(e) {} - } - - return Sizzle( expr, document, null, [elem] ).length > 0; -}; - -Sizzle.contains = function( context, elem ) { - // Set document vars if needed - if ( ( context.ownerDocument || context ) !== document ) { - setDocument( context ); - } - return contains( context, elem ); -}; - -Sizzle.attr = function( elem, name ) { - // Set document vars if needed - if ( ( elem.ownerDocument || elem ) !== document ) { - setDocument( elem ); - } - - var fn = Expr.attrHandle[ name.toLowerCase() ], - // Don't get fooled by Object.prototype properties (jQuery #13807) - val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? - fn( elem, name, !documentIsHTML ) : - undefined; - - return val === undefined ? - support.attributes || !documentIsHTML ? - elem.getAttribute( name ) : - (val = elem.getAttributeNode(name)) && val.specified ? - val.value : - null : - val; -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Document sorting and removing duplicates - * @param {ArrayLike} results - */ -Sizzle.uniqueSort = function( results ) { - var elem, - duplicates = [], - j = 0, - i = 0; - - // Unless we *know* we can detect duplicates, assume their presence - hasDuplicate = !support.detectDuplicates; - sortInput = !support.sortStable && results.slice( 0 ); - results.sort( sortOrder ); - - if ( hasDuplicate ) { - while ( (elem = results[i++]) ) { - if ( elem === results[ i ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - results.splice( duplicates[ j ], 1 ); - } - } - - return results; -}; - -/** - * Utility function for retrieving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -getText = Sizzle.getText = function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - // If no nodeType, this is expected to be an array - for ( ; (node = elem[i]); i++ ) { - // Do not traverse comment nodes - ret += getText( node ); - } - } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - // Use textContent for elements - // innerText usage removed for consistency of new lines (see #11153) - if ( typeof elem.textContent === "string" ) { - return elem.textContent; - } else { - // Traverse its children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - // Do not include comment or processing instruction nodes - - return ret; -}; - -Expr = Sizzle.selectors = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - attrHandle: {}, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - "ATTR": function( match ) { - match[1] = match[1].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[3] = ( match[4] || match[5] || "" ).replace( runescape, funescape ); - - if ( match[2] === "~=" ) { - match[3] = " " + match[3] + " "; - } - - return match.slice( 0, 4 ); - }, - - "CHILD": function( match ) { - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[1] = match[1].toLowerCase(); - - if ( match[1].slice( 0, 3 ) === "nth" ) { - // nth-* requires argument - if ( !match[3] ) { - Sizzle.error( match[0] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); - match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); - - // other types prohibit arguments - } else if ( match[3] ) { - Sizzle.error( match[0] ); - } - - return match; - }, - - "PSEUDO": function( match ) { - var excess, - unquoted = !match[5] && match[2]; - - if ( matchExpr["CHILD"].test( match[0] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[3] && match[4] !== undefined ) { - match[2] = match[4]; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - // Get excess from tokenize (recursively) - (excess = tokenize( unquoted, true )) && - // advance to the next closing parenthesis - (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { - - // excess is a negative index - match[0] = match[0].slice( 0, excess ); - match[2] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - "TAG": function( nodeNameSelector ) { - var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); - return nodeNameSelector === "*" ? - function() { return true; } : - function( elem ) { - return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; - }; - }, - - "CLASS": function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && - classCache( className, function( elem ) { - return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== strundefined && elem.getAttribute("class") || "" ); - }); - }, - - "ATTR": function( name, operator, check ) { - return function( elem ) { - var result = Sizzle.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - return operator === "=" ? result === check : - operator === "!=" ? result !== check : - operator === "^=" ? check && result.indexOf( check ) === 0 : - operator === "*=" ? check && result.indexOf( check ) > -1 : - operator === "$=" ? check && result.slice( -check.length ) === check : - operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 : - operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : - false; - }; - }, - - "CHILD": function( type, what, argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, context, xml ) { - var cache, outerCache, node, diff, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( (node = node[ dir ]) ) { - if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { - return false; - } - } - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - // Seek `elem` from a previously-cached index - outerCache = parent[ expando ] || (parent[ expando ] = {}); - cache = outerCache[ type ] || []; - nodeIndex = cache[0] === dirruns && cache[1]; - diff = cache[0] === dirruns && cache[2]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( (node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - (diff = nodeIndex = 0) || start.pop()) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - outerCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - // Use previously-cached element index if available - } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) { - diff = cache[1]; - - // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...) - } else { - // Use the same loop as above to seek `elem` from the start - while ( (node = ++nodeIndex && node && node[ dir ] || - (diff = nodeIndex = 0) || start.pop()) ) { - - if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { - // Cache the index of each encountered element - if ( useCache ) { - (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - "PSEUDO": function( pseudo, argument ) { - // pseudo-class names are case-insensitive - // http://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - Sizzle.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as Sizzle does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction(function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf.call( seed, matched[i] ); - seed[ idx ] = !( matches[ idx ] = matched[i] ); - } - }) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - // Potentially complex pseudos - "not": markFunction(function( selector ) { - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrim, "$1" ) ); - - return matcher[ expando ] ? - markFunction(function( seed, matches, context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( (elem = unmatched[i]) ) { - seed[i] = !(matches[i] = elem); - } - } - }) : - function( elem, context, xml ) { - input[0] = elem; - matcher( input, null, xml, results ); - return !results.pop(); - }; - }), - - "has": markFunction(function( selector ) { - return function( elem ) { - return Sizzle( selector, elem ).length > 0; - }; - }), - - "contains": markFunction(function( text ) { - return function( elem ) { - return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; - }; - }), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // http://www.w3.org/TR/selectors/#lang-pseudo - "lang": markFunction( function( lang ) { - // lang value must be a valid identifier - if ( !ridentifier.test(lang || "") ) { - Sizzle.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( (elemLang = documentIsHTML ? - elem.lang : - elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); - return false; - }; - }), - - // Miscellaneous - "target": function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - "root": function( elem ) { - return elem === docElem; - }, - - "focus": function( elem ) { - return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); - }, - - // Boolean properties - "enabled": function( elem ) { - return elem.disabled === false; - }, - - "disabled": function( elem ) { - return elem.disabled === true; - }, - - "checked": function( elem ) { - // In CSS3, :checked should return both checked and selected elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - var nodeName = elem.nodeName.toLowerCase(); - return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); - }, - - "selected": function( elem ) { - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - "empty": function( elem ) { - // http://www.w3.org/TR/selectors/#empty-pseudo - // :empty is only affected by element nodes and content nodes(including text(3), cdata(4)), - // not comment, processing instructions, or others - // Thanks to Diego Perini for the nodeName shortcut - // Greater than "@" means alpha characters (specifically not starting with "#" or "?") - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeName > "@" || elem.nodeType === 3 || elem.nodeType === 4 ) { - return false; - } - } - return true; - }, - - "parent": function( elem ) { - return !Expr.pseudos["empty"]( elem ); - }, - - // Element/input types - "header": function( elem ) { - return rheader.test( elem.nodeName ); - }, - - "input": function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - "button": function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === "button" || name === "button"; - }, - - "text": function( elem ) { - var attr; - // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) - // use getAttribute instead to test this case - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === elem.type ); - }, - - // Position-in-collection - "first": createPositionalPseudo(function() { - return [ 0 ]; - }), - - "last": createPositionalPseudo(function( matchIndexes, length ) { - return [ length - 1 ]; - }), - - "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - }), - - "even": createPositionalPseudo(function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "odd": createPositionalPseudo(function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - }) - } -}; - -Expr.pseudos["nth"] = Expr.pseudos["eq"]; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -// Easy API for creating new setFilters -function setFilters() {} -setFilters.prototype = Expr.filters = Expr.pseudos; -Expr.setFilters = new setFilters(); - -function tokenize( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || (match = rcomma.exec( soFar )) ) { - if ( match ) { - // Don't consume trailing commas as valid - soFar = soFar.slice( match[0].length ) || soFar; - } - groups.push( tokens = [] ); - } - - matched = false; - - // Combinators - if ( (match = rcombinators.exec( soFar )) ) { - matched = match.shift(); - tokens.push({ - value: matched, - // Cast descendant combinators to space - type: match[0].replace( rtrim, " " ) - }); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || - (match = preFilters[ type ]( match ))) ) { - matched = match.shift(); - tokens.push({ - value: matched, - type: type, - matches: match - }); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - return parseOnly ? - soFar.length : - soFar ? - Sizzle.error( selector ) : - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -} - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[i].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - checkNonElements = base && dir === "parentNode", - doneName = done++; - - return combinator.first ? - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var data, cache, outerCache, - dirkey = dirruns + " " + doneName; - - // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching - if ( xml ) { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || (elem[ expando ] = {}); - if ( (cache = outerCache[ dir ]) && cache[0] === dirkey ) { - if ( (data = cache[1]) === true || data === cachedruns ) { - return data === true; - } - } else { - cache = outerCache[ dir ] = [ dirkey ]; - cache[1] = matcher( elem, context, xml ) || cachedruns; - if ( cache[1] === true ) { - return true; - } - } - } - } - } - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[i]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[0]; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( (elem = unmatched[i]) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction(function( seed, results, context, xml ) { - var temp, i, elem, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems, - - matcherOut = matcher ? - // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, - postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results : - matcherIn; - - // Find primary matches - if ( matcher ) { - matcher( matcherIn, matcherOut, context, xml ); - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( (elem = temp[i]) ) { - matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( (elem = matcherOut[i]) ) { - // Restore matcherIn since elem is not yet a final match - temp.push( (matcherIn[i] = elem) ); - } - } - postFinder( null, (matcherOut = []), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( (elem = matcherOut[i]) && - (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) { - - seed[temp] = !(results[temp] = elem); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - }); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[0].type ], - implicitRelative = leadingRelative || Expr.relative[" "], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf.call( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - return ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - (checkContext = context).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - } ]; - - for ( ; i < len; i++ ) { - if ( (matcher = Expr.relative[ tokens[i].type ]) ) { - matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; - } else { - matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[j].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( - // If the preceding token was a descendant combinator, insert an implicit any-element `*` - tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) - ).replace( rtrim, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - // A counter to specify which element is currently being matched - var matcherCachedRuns = 0, - bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, expandContext ) { - var elem, j, matcher, - setMatched = [], - matchedCount = 0, - i = "0", - unmatched = seed && [], - outermost = expandContext != null, - contextBackup = outermostContext, - // We must always have either seed elements or context - elems = seed || byElement && Expr.find["TAG"]( "*", expandContext && context.parentNode || context ), - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1); - - if ( outermost ) { - outermostContext = context !== document && context; - cachedruns = matcherCachedRuns; - } - - // Add elements passing elementMatchers directly to results - // Keep `i` a string if there are no elements so `matchedCount` will be "00" below - for ( ; (elem = elems[i]) != null; i++ ) { - if ( byElement && elem ) { - j = 0; - while ( (matcher = elementMatchers[j++]) ) { - if ( matcher( elem, context, xml ) ) { - results.push( elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - cachedruns = ++matcherCachedRuns; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - // They will have gone through all possible matchers - if ( (elem = !matcher && elem) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // Apply set filters to unmatched elements - matchedCount += i; - if ( bySet && i !== matchedCount ) { - j = 0; - while ( (matcher = setMatchers[j++]) ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !(unmatched[i] || setMatched[i]) ) { - setMatched[i] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - Sizzle.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - // Generate a function of recursive functions that can be used to check each element - if ( !group ) { - group = tokenize( selector ); - } - i = group.length; - while ( i-- ) { - cached = matcherFromTokens( group[i] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); - } - return cached; -}; - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - Sizzle( selector, contexts[i], results ); - } - return results; -} - -function select( selector, context, results, seed ) { - var i, tokens, token, type, find, - match = tokenize( selector ); - - if ( !seed ) { - // Try to minimize operations if there is only one group - if ( match.length === 1 ) { - - // Take a shortcut and set the context if the root selector is an ID - tokens = match[0] = match[0].slice( 0 ); - if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && - support.getById && context.nodeType === 9 && documentIsHTML && - Expr.relative[ tokens[1].type ] ) { - - context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; - if ( !context ) { - return results; - } - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; - while ( i-- ) { - token = tokens[i]; - - // Abort if we hit a combinator - if ( Expr.relative[ (type = token.type) ] ) { - break; - } - if ( (find = Expr.find[ type ]) ) { - // Search, expanding context for leading sibling combinators - if ( (seed = find( - token.matches[0].replace( runescape, funescape ), - rsibling.test( tokens[0].type ) && context.parentNode || context - )) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, seed ); - return results; - } - - break; - } - } - } - } - } - - // Compile and execute a filtering function - // Provide `match` to avoid retokenization if we modified the selector above - compile( selector, match )( - seed, - context, - !documentIsHTML, - results, - rsibling.test( selector ) - ); - return results; -} - -// One-time assignments - -// Sort stability -support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; - -// Support: Chrome<14 -// Always assume duplicates if they aren't passed to the comparison function -support.detectDuplicates = hasDuplicate; - -// Initialize against the default document -setDocument(); - -// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) -// Detached nodes confoundingly follow *each other* -support.sortDetached = assert(function( div1 ) { - // Should return 1, but returns 4 (following) - return div1.compareDocumentPosition( document.createElement("div") ) & 1; -}); - -// Support: IE<8 -// Prevent attribute/property "interpolation" -// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !assert(function( div ) { - div.innerHTML = ""; - return div.firstChild.getAttribute("href") === "#" ; -}) ) { - addHandle( "type|href|height|width", function( elem, name, isXML ) { - if ( !isXML ) { - return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); - } - }); -} - -// Support: IE<9 -// Use defaultValue in place of getAttribute("value") -if ( !support.attributes || !assert(function( div ) { - div.innerHTML = ""; - div.firstChild.setAttribute( "value", "" ); - return div.firstChild.getAttribute( "value" ) === ""; -}) ) { - addHandle( "value", function( elem, name, isXML ) { - if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { - return elem.defaultValue; - } - }); -} - -// Support: IE<9 -// Use getAttributeNode to fetch booleans when getAttribute lies -if ( !assert(function( div ) { - return div.getAttribute("disabled") == null; -}) ) { - addHandle( booleans, function( elem, name, isXML ) { - var val; - if ( !isXML ) { - return (val = elem.getAttributeNode( name )) && val.specified ? - val.value : - elem[ name ] === true ? name.toLowerCase() : null; - } - }); -} - -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; -jQuery.expr[":"] = jQuery.expr.pseudos; -jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; - - -})( window ); -// String to Object options format cache -var optionsCache = {}; - -// Convert String-formatted options into Object-formatted ones and store in cache -function createOptions( options ) { - var object = optionsCache[ options ] = {}; - jQuery.each( options.match( core_rnotwhite ) || [], function( _, flag ) { - object[ flag ] = true; - }); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - ( optionsCache[ options ] || createOptions( options ) ) : - jQuery.extend( {}, options ); - - var // Flag to know if list is currently firing - firing, - // Last fire value (for non-forgettable lists) - memory, - // Flag to know if list was already fired - fired, - // End of the loop when firing - firingLength, - // Index of currently firing callback (modified by remove if needed) - firingIndex, - // First callback to fire (used internally by add and fireWith) - firingStart, - // Actual callback list - list = [], - // Stack of fire calls for repeatable lists - stack = !options.once && [], - // Fire callbacks - fire = function( data ) { - memory = options.memory && data; - fired = true; - firingIndex = firingStart || 0; - firingStart = 0; - firingLength = list.length; - firing = true; - for ( ; list && firingIndex < firingLength; firingIndex++ ) { - if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) { - memory = false; // To prevent further calls using add - break; - } - } - firing = false; - if ( list ) { - if ( stack ) { - if ( stack.length ) { - fire( stack.shift() ); - } - } else if ( memory ) { - list = []; - } else { - self.disable(); - } - } - }, - // Actual Callbacks object - self = { - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - // First, we save the current length - var start = list.length; - (function add( args ) { - jQuery.each( args, function( _, arg ) { - var type = jQuery.type( arg ); - if ( type === "function" ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && type !== "string" ) { - // Inspect recursively - add( arg ); - } - }); - })( arguments ); - // Do we need to add the callbacks to the - // current firing batch? - if ( firing ) { - firingLength = list.length; - // With memory, if we're not firing then - // we should call right away - } else if ( memory ) { - firingStart = start; - fire( memory ); - } - } - return this; - }, - // Remove a callback from the list - remove: function() { - if ( list ) { - jQuery.each( arguments, function( _, arg ) { - var index; - while( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - // Handle firing indexes - if ( firing ) { - if ( index <= firingLength ) { - firingLength--; - } - if ( index <= firingIndex ) { - firingIndex--; - } - } - } - }); - } - return this; - }, - // Check if a given callback is in the list. - // If no argument is given, return whether or not list has callbacks attached. - has: function( fn ) { - return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length ); - }, - // Remove all callbacks from the list - empty: function() { - list = []; - firingLength = 0; - return this; - }, - // Have the list do nothing anymore - disable: function() { - list = stack = memory = undefined; - return this; - }, - // Is it disabled? - disabled: function() { - return !list; - }, - // Lock the list in its current state - lock: function() { - stack = undefined; - if ( !memory ) { - self.disable(); - } - return this; - }, - // Is it locked? - locked: function() { - return !stack; - }, - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( list && ( !fired || stack ) ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - if ( firing ) { - stack.push( args ); - } else { - fire( args ); - } - } - return this; - }, - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; -jQuery.extend({ - - Deferred: function( func ) { - var tuples = [ - // action, add listener, listener list, final state - [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ], - [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ], - [ "notify", "progress", jQuery.Callbacks("memory") ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - then: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - return jQuery.Deferred(function( newDefer ) { - jQuery.each( tuples, function( i, tuple ) { - var action = tuple[ 0 ], - fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; - // deferred[ done | fail | progress ] for forwarding actions to newDefer - deferred[ tuple[1] ](function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && jQuery.isFunction( returned.promise ) ) { - returned.promise() - .done( newDefer.resolve ) - .fail( newDefer.reject ) - .progress( newDefer.notify ); - } else { - newDefer[ action + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments ); - } - }); - }); - fns = null; - }).promise(); - }, - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Keep pipe for back-compat - promise.pipe = promise.then; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 3 ]; - - // promise[ done | fail | progress ] = list.add - promise[ tuple[1] ] = list.add; - - // Handle state - if ( stateString ) { - list.add(function() { - // state = [ resolved | rejected ] - state = stateString; - - // [ reject_list | resolve_list ].disable; progress_list.lock - }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); - } - - // deferred[ resolve | reject | notify ] - deferred[ tuple[0] ] = function() { - deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments ); - return this; - }; - deferred[ tuple[0] + "With" ] = list.fireWith; - }); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( subordinate /* , ..., subordinateN */ ) { - var i = 0, - resolveValues = core_slice.call( arguments ), - length = resolveValues.length, - - // the count of uncompleted subordinates - remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, - - // the master Deferred. If resolveValues consist of only a single Deferred, just use that. - deferred = remaining === 1 ? subordinate : jQuery.Deferred(), - - // Update function for both resolve and progress values - updateFunc = function( i, contexts, values ) { - return function( value ) { - contexts[ i ] = this; - values[ i ] = arguments.length > 1 ? core_slice.call( arguments ) : value; - if( values === progressValues ) { - deferred.notifyWith( contexts, values ); - } else if ( !( --remaining ) ) { - deferred.resolveWith( contexts, values ); - } - }; - }, - - progressValues, progressContexts, resolveContexts; - - // add listeners to Deferred subordinates; treat others as resolved - if ( length > 1 ) { - progressValues = new Array( length ); - progressContexts = new Array( length ); - resolveContexts = new Array( length ); - for ( ; i < length; i++ ) { - if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { - resolveValues[ i ].promise() - .done( updateFunc( i, resolveContexts, resolveValues ) ) - .fail( deferred.reject ) - .progress( updateFunc( i, progressContexts, progressValues ) ); - } else { - --remaining; - } - } - } - - // if we're not waiting on anything, resolve the master - if ( !remaining ) { - deferred.resolveWith( resolveContexts, resolveValues ); - } - - return deferred.promise(); - } -}); -jQuery.support = (function( support ) { - - var all, a, input, select, fragment, opt, eventName, isSupported, i, - div = document.createElement("div"); - - // Setup - div.setAttribute( "className", "t" ); - div.innerHTML = "
a"; - - // Finish early in limited (non-browser) environments - all = div.getElementsByTagName("*") || []; - a = div.getElementsByTagName("a")[ 0 ]; - if ( !a || !a.style || !all.length ) { - return support; - } - - // First batch of tests - select = document.createElement("select"); - opt = select.appendChild( document.createElement("option") ); - input = div.getElementsByTagName("input")[ 0 ]; - - a.style.cssText = "top:1px;float:left;opacity:.5"; - - // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) - support.getSetAttribute = div.className !== "t"; - - // IE strips leading whitespace when .innerHTML is used - support.leadingWhitespace = div.firstChild.nodeType === 3; - - // Make sure that tbody elements aren't automatically inserted - // IE will insert them into empty tables - support.tbody = !div.getElementsByTagName("tbody").length; - - // Make sure that link elements get serialized correctly by innerHTML - // This requires a wrapper element in IE - support.htmlSerialize = !!div.getElementsByTagName("link").length; - - // Get the style information from getAttribute - // (IE uses .cssText instead) - support.style = /top/.test( a.getAttribute("style") ); - - // Make sure that URLs aren't manipulated - // (IE normalizes it by default) - support.hrefNormalized = a.getAttribute("href") === "/a"; - - // Make sure that element opacity exists - // (IE uses filter instead) - // Use a regex to work around a WebKit issue. See #5145 - support.opacity = /^0.5/.test( a.style.opacity ); - - // Verify style float existence - // (IE uses styleFloat instead of cssFloat) - support.cssFloat = !!a.style.cssFloat; - - // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere) - support.checkOn = !!input.value; - - // Make sure that a selected-by-default option has a working selected property. - // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) - support.optSelected = opt.selected; - - // Tests for enctype support on a form (#6743) - support.enctype = !!document.createElement("form").enctype; - - // Makes sure cloning an html5 element does not cause problems - // Where outerHTML is undefined, this still works - support.html5Clone = document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav>"; - - // Will be defined later - support.inlineBlockNeedsLayout = false; - support.shrinkWrapBlocks = false; - support.pixelPosition = false; - support.deleteExpando = true; - support.noCloneEvent = true; - support.reliableMarginRight = true; - support.boxSizingReliable = true; - - // Make sure checked status is properly cloned - input.checked = true; - support.noCloneChecked = input.cloneNode( true ).checked; - - // Make sure that the options inside disabled selects aren't marked as disabled - // (WebKit marks them as disabled) - select.disabled = true; - support.optDisabled = !opt.disabled; - - // Support: IE<9 - try { - delete div.test; - } catch( e ) { - support.deleteExpando = false; - } - - // Check if we can trust getAttribute("value") - input = document.createElement("input"); - input.setAttribute( "value", "" ); - support.input = input.getAttribute( "value" ) === ""; - - // Check if an input maintains its value after becoming a radio - input.value = "t"; - input.setAttribute( "type", "radio" ); - support.radioValue = input.value === "t"; - - // #11217 - WebKit loses check when the name is after the checked attribute - input.setAttribute( "checked", "t" ); - input.setAttribute( "name", "t" ); - - fragment = document.createDocumentFragment(); - fragment.appendChild( input ); - - // Check if a disconnected checkbox will retain its checked - // value of true after appended to the DOM (IE6/7) - support.appendChecked = input.checked; - - // WebKit doesn't clone checked state correctly in fragments - support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE<9 - // Opera does not clone events (and typeof div.attachEvent === undefined). - // IE9-10 clones events bound via attachEvent, but they don't trigger with .click() - if ( div.attachEvent ) { - div.attachEvent( "onclick", function() { - support.noCloneEvent = false; - }); - - div.cloneNode( true ).click(); - } - - // Support: IE<9 (lack submit/change bubble), Firefox 17+ (lack focusin event) - // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP) - for ( i in { submit: true, change: true, focusin: true }) { - div.setAttribute( eventName = "on" + i, "t" ); - - support[ i + "Bubbles" ] = eventName in window || div.attributes[ eventName ].expando === false; - } - - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - // Support: IE<9 - // Iteration over object's inherited properties before its own. - for ( i in jQuery( support ) ) { - break; - } - support.ownLast = i !== "0"; - - // Run tests that need a body at doc ready - jQuery(function() { - var container, marginDiv, tds, - divReset = "padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;", - body = document.getElementsByTagName("body")[0]; - - if ( !body ) { - // Return for frameset docs that don't have a body - return; - } - - container = document.createElement("div"); - container.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px"; - - body.appendChild( container ).appendChild( div ); - - // Support: IE8 - // Check if table cells still have offsetWidth/Height when they are set - // to display:none and there are still other visible table cells in a - // table row; if so, offsetWidth/Height are not reliable for use when - // determining if an element has been hidden directly using - // display:none (it is still safe to use offsets if a parent element is - // hidden; don safety goggles and see bug #4512 for more information). - div.innerHTML = "
t
"; - tds = div.getElementsByTagName("td"); - tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none"; - isSupported = ( tds[ 0 ].offsetHeight === 0 ); - - tds[ 0 ].style.display = ""; - tds[ 1 ].style.display = "none"; - - // Support: IE8 - // Check if empty table cells still have offsetWidth/Height - support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); - - // Check box-sizing and margin behavior. - div.innerHTML = ""; - div.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;"; - - // Workaround failing boxSizing test due to offsetWidth returning wrong value - // with some non-1 values of body zoom, ticket #13543 - jQuery.swap( body, body.style.zoom != null ? { zoom: 1 } : {}, function() { - support.boxSizing = div.offsetWidth === 4; - }); - - // Use window.getComputedStyle because jsdom on node.js will break without it. - if ( window.getComputedStyle ) { - support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%"; - support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px"; - - // Check if div with explicit width and no margin-right incorrectly - // gets computed margin-right based on width of container. (#3333) - // Fails in WebKit before Feb 2011 nightlies - // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right - marginDiv = div.appendChild( document.createElement("div") ); - marginDiv.style.cssText = div.style.cssText = divReset; - marginDiv.style.marginRight = marginDiv.style.width = "0"; - div.style.width = "1px"; - - support.reliableMarginRight = - !parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight ); - } - - if ( typeof div.style.zoom !== core_strundefined ) { - // Support: IE<8 - // Check if natively block-level elements act like inline-block - // elements when setting their display to 'inline' and giving - // them layout - div.innerHTML = ""; - div.style.cssText = divReset + "width:1px;padding:1px;display:inline;zoom:1"; - support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 ); - - // Support: IE6 - // Check if elements with layout shrink-wrap their children - div.style.display = "block"; - div.innerHTML = "
"; - div.firstChild.style.width = "5px"; - support.shrinkWrapBlocks = ( div.offsetWidth !== 3 ); - - if ( support.inlineBlockNeedsLayout ) { - // Prevent IE 6 from affecting layout for positioned elements #11048 - // Prevent IE from shrinking the body in IE 7 mode #12869 - // Support: IE<8 - body.style.zoom = 1; - } - } - - body.removeChild( container ); - - // Null elements to avoid leaks in IE - container = div = tds = marginDiv = null; - }); - - // Null elements to avoid leaks in IE - all = select = fragment = opt = a = input = null; - - return support; -})({}); - -var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/, - rmultiDash = /([A-Z])/g; - -function internalData( elem, name, data, pvt /* Internal Use Only */ ){ - if ( !jQuery.acceptData( elem ) ) { - return; - } - - var ret, thisCache, - internalKey = jQuery.expando, - - // We have to handle DOM nodes and JS objects differently because IE6-7 - // can't GC object references properly across the DOM-JS boundary - isNode = elem.nodeType, - - // Only DOM nodes need the global jQuery cache; JS object data is - // attached directly to the object so GC can occur automatically - cache = isNode ? jQuery.cache : elem, - - // Only defining an ID for JS objects if its cache already exists allows - // the code to shortcut on the same path as a DOM node with no cache - id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey; - - // Avoid doing any more work than we need to when trying to get data on an - // object that has no data at all - if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === "string" ) { - return; - } - - if ( !id ) { - // Only DOM nodes need a new unique ID for each element since their data - // ends up in the global cache - if ( isNode ) { - id = elem[ internalKey ] = core_deletedIds.pop() || jQuery.guid++; - } else { - id = internalKey; - } - } - - if ( !cache[ id ] ) { - // Avoid exposing jQuery metadata on plain JS objects when the object - // is serialized using JSON.stringify - cache[ id ] = isNode ? {} : { toJSON: jQuery.noop }; - } - - // An object can be passed to jQuery.data instead of a key/value pair; this gets - // shallow copied over onto the existing cache - if ( typeof name === "object" || typeof name === "function" ) { - if ( pvt ) { - cache[ id ] = jQuery.extend( cache[ id ], name ); - } else { - cache[ id ].data = jQuery.extend( cache[ id ].data, name ); - } - } - - thisCache = cache[ id ]; - - // jQuery data() is stored in a separate object inside the object's internal data - // cache in order to avoid key collisions between internal data and user-defined - // data. - if ( !pvt ) { - if ( !thisCache.data ) { - thisCache.data = {}; - } - - thisCache = thisCache.data; - } - - if ( data !== undefined ) { - thisCache[ jQuery.camelCase( name ) ] = data; - } - - // Check for both converted-to-camel and non-converted data property names - // If a data property was specified - if ( typeof name === "string" ) { - - // First Try to find as-is property data - ret = thisCache[ name ]; - - // Test for null|undefined property data - if ( ret == null ) { - - // Try to find the camelCased property - ret = thisCache[ jQuery.camelCase( name ) ]; - } - } else { - ret = thisCache; - } - - return ret; -} - -function internalRemoveData( elem, name, pvt ) { - if ( !jQuery.acceptData( elem ) ) { - return; - } - - var thisCache, i, - isNode = elem.nodeType, - - // See jQuery.data for more information - cache = isNode ? jQuery.cache : elem, - id = isNode ? elem[ jQuery.expando ] : jQuery.expando; - - // If there is already no cache entry for this object, there is no - // purpose in continuing - if ( !cache[ id ] ) { - return; - } - - if ( name ) { - - thisCache = pvt ? cache[ id ] : cache[ id ].data; - - if ( thisCache ) { - - // Support array or space separated string names for data keys - if ( !jQuery.isArray( name ) ) { - - // try the string as a key before any manipulation - if ( name in thisCache ) { - name = [ name ]; - } else { - - // split the camel cased version by spaces unless a key with the spaces exists - name = jQuery.camelCase( name ); - if ( name in thisCache ) { - name = [ name ]; - } else { - name = name.split(" "); - } - } - } else { - // If "name" is an array of keys... - // When data is initially created, via ("key", "val") signature, - // keys will be converted to camelCase. - // Since there is no way to tell _how_ a key was added, remove - // both plain key and camelCase key. #12786 - // This will only penalize the array argument path. - name = name.concat( jQuery.map( name, jQuery.camelCase ) ); - } - - i = name.length; - while ( i-- ) { - delete thisCache[ name[i] ]; - } - - // If there is no data left in the cache, we want to continue - // and let the cache object itself get destroyed - if ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) { - return; - } - } - } - - // See jQuery.data for more information - if ( !pvt ) { - delete cache[ id ].data; - - // Don't destroy the parent cache unless the internal data object - // had been the only thing left in it - if ( !isEmptyDataObject( cache[ id ] ) ) { - return; - } - } - - // Destroy the cache - if ( isNode ) { - jQuery.cleanData( [ elem ], true ); - - // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080) - /* jshint eqeqeq: false */ - } else if ( jQuery.support.deleteExpando || cache != cache.window ) { - /* jshint eqeqeq: true */ - delete cache[ id ]; - - // When all else fails, null - } else { - cache[ id ] = null; - } -} - -jQuery.extend({ - cache: {}, - - // The following elements throw uncatchable exceptions if you - // attempt to add expando properties to them. - noData: { - "applet": true, - "embed": true, - // Ban all objects except for Flash (which handle expandos) - "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" - }, - - hasData: function( elem ) { - elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; - return !!elem && !isEmptyDataObject( elem ); - }, - - data: function( elem, name, data ) { - return internalData( elem, name, data ); - }, - - removeData: function( elem, name ) { - return internalRemoveData( elem, name ); - }, - - // For internal use only. - _data: function( elem, name, data ) { - return internalData( elem, name, data, true ); - }, - - _removeData: function( elem, name ) { - return internalRemoveData( elem, name, true ); - }, - - // A method for determining if a DOM node can handle the data expando - acceptData: function( elem ) { - // Do not set data on non-element because it will not be cleared (#8335). - if ( elem.nodeType && elem.nodeType !== 1 && elem.nodeType !== 9 ) { - return false; - } - - var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ]; - - // nodes accept data unless otherwise specified; rejection can be conditional - return !noData || noData !== true && elem.getAttribute("classid") === noData; - } -}); - -jQuery.fn.extend({ - data: function( key, value ) { - var attrs, name, - data = null, - i = 0, - elem = this[0]; - - // Special expections of .data basically thwart jQuery.access, - // so implement the relevant behavior ourselves - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = jQuery.data( elem ); - - if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { - attrs = elem.attributes; - for ( ; i < attrs.length; i++ ) { - name = attrs[i].name; - - if ( name.indexOf("data-") === 0 ) { - name = jQuery.camelCase( name.slice(5) ); - - dataAttr( elem, name, data[ name ] ); - } - } - jQuery._data( elem, "parsedAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each(function() { - jQuery.data( this, key ); - }); - } - - return arguments.length > 1 ? - - // Sets one value - this.each(function() { - jQuery.data( this, key, value ); - }) : - - // Gets one value - // Try to fetch any internally stored data first - elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : null; - }, - - removeData: function( key ) { - return this.each(function() { - jQuery.removeData( this, key ); - }); - } -}); - -function dataAttr( elem, key, data ) { - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - - var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); - - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = data === "true" ? true : - data === "false" ? false : - data === "null" ? null : - // Only convert to a number if it doesn't change the string - +data + "" === data ? +data : - rbrace.test( data ) ? jQuery.parseJSON( data ) : - data; - } catch( e ) {} - - // Make sure we set the data so it isn't changed later - jQuery.data( elem, key, data ); - - } else { - data = undefined; - } - } - - return data; -} - -// checks a cache object for emptiness -function isEmptyDataObject( obj ) { - var name; - for ( name in obj ) { - - // if the public data object is empty, the private is still empty - if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { - continue; - } - if ( name !== "toJSON" ) { - return false; - } - } - - return true; -} -jQuery.extend({ - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = jQuery._data( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || jQuery.isArray(data) ) { - queue = jQuery._data( elem, type, jQuery.makeArray(data) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // not intended for public consumption - generates a queueHooks object, or returns the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return jQuery._data( elem, key ) || jQuery._data( elem, key, { - empty: jQuery.Callbacks("once memory").add(function() { - jQuery._removeData( elem, type + "queue" ); - jQuery._removeData( elem, key ); - }) - }); - } -}); - -jQuery.fn.extend({ - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[0], type ); - } - - return data === undefined ? - this : - this.each(function() { - var queue = jQuery.queue( this, type, data ); - - // ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[0] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - }); - }, - dequeue: function( type ) { - return this.each(function() { - jQuery.dequeue( this, type ); - }); - }, - // Based off of the plugin by Clint Helfers, with permission. - // http://blindsignals.com/index.php/2009/07/jquery-delay/ - delay: function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = setTimeout( next, time ); - hooks.stop = function() { - clearTimeout( timeout ); - }; - }); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while( i-- ) { - tmp = jQuery._data( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -}); -var nodeHook, boolHook, - rclass = /[\t\r\n\f]/g, - rreturn = /\r/g, - rfocusable = /^(?:input|select|textarea|button|object)$/i, - rclickable = /^(?:a|area)$/i, - ruseDefault = /^(?:checked|selected)$/i, - getSetAttribute = jQuery.support.getSetAttribute, - getSetInput = jQuery.support.input; - -jQuery.fn.extend({ - attr: function( name, value ) { - return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each(function() { - jQuery.removeAttr( this, name ); - }); - }, - - prop: function( name, value ) { - return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - name = jQuery.propFix[ name ] || name; - return this.each(function() { - // try/catch handles cases where IE balks (such as removing a property on window) - try { - this[ name ] = undefined; - delete this[ name ]; - } catch( e ) {} - }); - }, - - addClass: function( value ) { - var classes, elem, cur, clazz, j, - i = 0, - len = this.length, - proceed = typeof value === "string" && value; - - if ( jQuery.isFunction( value ) ) { - return this.each(function( j ) { - jQuery( this ).addClass( value.call( this, j, this.className ) ); - }); - } - - if ( proceed ) { - // The disjunction here is for better compressibility (see removeClass) - classes = ( value || "" ).match( core_rnotwhite ) || []; - - for ( ; i < len; i++ ) { - elem = this[ i ]; - cur = elem.nodeType === 1 && ( elem.className ? - ( " " + elem.className + " " ).replace( rclass, " " ) : - " " - ); - - if ( cur ) { - j = 0; - while ( (clazz = classes[j++]) ) { - if ( cur.indexOf( " " + clazz + " " ) < 0 ) { - cur += clazz + " "; - } - } - elem.className = jQuery.trim( cur ); - - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classes, elem, cur, clazz, j, - i = 0, - len = this.length, - proceed = arguments.length === 0 || typeof value === "string" && value; - - if ( jQuery.isFunction( value ) ) { - return this.each(function( j ) { - jQuery( this ).removeClass( value.call( this, j, this.className ) ); - }); - } - if ( proceed ) { - classes = ( value || "" ).match( core_rnotwhite ) || []; - - for ( ; i < len; i++ ) { - elem = this[ i ]; - // This expression is here for better compressibility (see addClass) - cur = elem.nodeType === 1 && ( elem.className ? - ( " " + elem.className + " " ).replace( rclass, " " ) : - "" - ); - - if ( cur ) { - j = 0; - while ( (clazz = classes[j++]) ) { - // Remove *all* instances - while ( cur.indexOf( " " + clazz + " " ) >= 0 ) { - cur = cur.replace( " " + clazz + " ", " " ); - } - } - elem.className = value ? jQuery.trim( cur ) : ""; - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value; - - if ( typeof stateVal === "boolean" && type === "string" ) { - return stateVal ? this.addClass( value ) : this.removeClass( value ); - } - - if ( jQuery.isFunction( value ) ) { - return this.each(function( i ) { - jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); - }); - } - - return this.each(function() { - if ( type === "string" ) { - // toggle individual class names - var className, - i = 0, - self = jQuery( this ), - classNames = value.match( core_rnotwhite ) || []; - - while ( (className = classNames[ i++ ]) ) { - // check each className given, space separated list - if ( self.hasClass( className ) ) { - self.removeClass( className ); - } else { - self.addClass( className ); - } - } - - // Toggle whole class name - } else if ( type === core_strundefined || type === "boolean" ) { - if ( this.className ) { - // store className if set - jQuery._data( this, "__className__", this.className ); - } - - // If the element has a class name or if we're passed "false", - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; - } - }); - }, - - hasClass: function( selector ) { - var className = " " + selector + " ", - i = 0, - l = this.length; - for ( ; i < l; i++ ) { - if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) { - return true; - } - } - - return false; - }, - - val: function( value ) { - var ret, hooks, isFunction, - elem = this[0]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { - return ret; - } - - ret = elem.value; - - return typeof ret === "string" ? - // handle most common string cases - ret.replace(rreturn, "") : - // handle cases where value is null/undef or number - ret == null ? "" : ret; - } - - return; - } - - isFunction = jQuery.isFunction( value ); - - return this.each(function( i ) { - var val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( isFunction ) { - val = value.call( this, i, jQuery( this ).val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - } else if ( typeof val === "number" ) { - val += ""; - } else if ( jQuery.isArray( val ) ) { - val = jQuery.map(val, function ( value ) { - return value == null ? "" : value + ""; - }); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - }); - } -}); - -jQuery.extend({ - valHooks: { - option: { - get: function( elem ) { - // Use proper attribute retrieval(#6932, #12072) - var val = jQuery.find.attr( elem, "value" ); - return val != null ? - val : - elem.text; - } - }, - select: { - get: function( elem ) { - var value, option, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one" || index < 0, - values = one ? null : [], - max = one ? index + 1 : options.length, - i = index < 0 ? - max : - one ? index : 0; - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // oldIE doesn't update selected after form reset (#2551) - if ( ( option.selected || i === index ) && - // Don't return options that are disabled or in a disabled optgroup - ( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) && - ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var optionSet, option, - options = elem.options, - values = jQuery.makeArray( value ), - i = options.length; - - while ( i-- ) { - option = options[ i ]; - if ( (option.selected = jQuery.inArray( jQuery(option).val(), values ) >= 0) ) { - optionSet = true; - } - } - - // force browsers to behave consistently when non-matching value is set - if ( !optionSet ) { - elem.selectedIndex = -1; - } - return values; - } - } - }, - - attr: function( elem, name, value ) { - var hooks, ret, - nType = elem.nodeType; - - // don't get/set attributes on text, comment and attribute nodes - if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === core_strundefined ) { - return jQuery.prop( elem, name, value ); - } - - // All attributes are lowercase - // Grab necessary hook if one is defined - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - name = name.toLowerCase(); - hooks = jQuery.attrHooks[ name ] || - ( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook ); - } - - if ( value !== undefined ) { - - if ( value === null ) { - jQuery.removeAttr( elem, name ); - - } else if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { - return ret; - - } else { - elem.setAttribute( name, value + "" ); - return value; - } - - } else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { - return ret; - - } else { - ret = jQuery.find.attr( elem, name ); - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? - undefined : - ret; - } - }, - - removeAttr: function( elem, value ) { - var name, propName, - i = 0, - attrNames = value && value.match( core_rnotwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( (name = attrNames[i++]) ) { - propName = jQuery.propFix[ name ] || name; - - // Boolean attributes get special treatment (#10870) - if ( jQuery.expr.match.bool.test( name ) ) { - // Set corresponding property to false - if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { - elem[ propName ] = false; - // Support: IE<9 - // Also clear defaultChecked/defaultSelected (if appropriate) - } else { - elem[ jQuery.camelCase( "default-" + name ) ] = - elem[ propName ] = false; - } - - // See #9699 for explanation of this approach (setting first, then removal) - } else { - jQuery.attr( elem, name, "" ); - } - - elem.removeAttribute( getSetAttribute ? name : propName ); - } - } - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { - // Setting the type on a radio button after the value resets the value in IE6-9 - // Reset value to default in case type is set after value during creation - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - propFix: { - "for": "htmlFor", - "class": "className" - }, - - prop: function( elem, name, value ) { - var ret, hooks, notxml, - nType = elem.nodeType; - - // don't get/set properties on text, comment and attribute nodes - if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); - - if ( notxml ) { - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ? - ret : - ( elem[ name ] = value ); - - } else { - return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ? - ret : - elem[ name ]; - } - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set - // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - // Use proper attribute retrieval(#12072) - var tabindex = jQuery.find.attr( elem, "tabindex" ); - - return tabindex ? - parseInt( tabindex, 10 ) : - rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? - 0 : - -1; - } - } - } -}); - -// Hooks for boolean attributes -boolHook = { - set: function( elem, value, name ) { - if ( value === false ) { - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { - // IE<8 needs the *property* name - elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name ); - - // Use defaultChecked and defaultSelected for oldIE - } else { - elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true; - } - - return name; - } -}; -jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { - var getter = jQuery.expr.attrHandle[ name ] || jQuery.find.attr; - - jQuery.expr.attrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ? - function( elem, name, isXML ) { - var fn = jQuery.expr.attrHandle[ name ], - ret = isXML ? - undefined : - /* jshint eqeqeq: false */ - (jQuery.expr.attrHandle[ name ] = undefined) != - getter( elem, name, isXML ) ? - - name.toLowerCase() : - null; - jQuery.expr.attrHandle[ name ] = fn; - return ret; - } : - function( elem, name, isXML ) { - return isXML ? - undefined : - elem[ jQuery.camelCase( "default-" + name ) ] ? - name.toLowerCase() : - null; - }; -}); - -// fix oldIE attroperties -if ( !getSetInput || !getSetAttribute ) { - jQuery.attrHooks.value = { - set: function( elem, value, name ) { - if ( jQuery.nodeName( elem, "input" ) ) { - // Does not return so that setAttribute is also used - elem.defaultValue = value; - } else { - // Use nodeHook if defined (#1954); otherwise setAttribute is fine - return nodeHook && nodeHook.set( elem, value, name ); - } - } - }; -} - -// IE6/7 do not support getting/setting some attributes with get/setAttribute -if ( !getSetAttribute ) { - - // Use this for any attribute in IE6/7 - // This fixes almost every IE6/7 issue - nodeHook = { - set: function( elem, value, name ) { - // Set the existing or create a new attribute node - var ret = elem.getAttributeNode( name ); - if ( !ret ) { - elem.setAttributeNode( - (ret = elem.ownerDocument.createAttribute( name )) - ); - } - - ret.value = value += ""; - - // Break association with cloned elements by also using setAttribute (#9646) - return name === "value" || value === elem.getAttribute( name ) ? - value : - undefined; - } - }; - jQuery.expr.attrHandle.id = jQuery.expr.attrHandle.name = jQuery.expr.attrHandle.coords = - // Some attributes are constructed with empty-string values when not defined - function( elem, name, isXML ) { - var ret; - return isXML ? - undefined : - (ret = elem.getAttributeNode( name )) && ret.value !== "" ? - ret.value : - null; - }; - jQuery.valHooks.button = { - get: function( elem, name ) { - var ret = elem.getAttributeNode( name ); - return ret && ret.specified ? - ret.value : - undefined; - }, - set: nodeHook.set - }; - - // Set contenteditable to false on removals(#10429) - // Setting to empty string throws an error as an invalid value - jQuery.attrHooks.contenteditable = { - set: function( elem, value, name ) { - nodeHook.set( elem, value === "" ? false : value, name ); - } - }; - - // Set width and height to auto instead of 0 on empty string( Bug #8150 ) - // This is for removals - jQuery.each([ "width", "height" ], function( i, name ) { - jQuery.attrHooks[ name ] = { - set: function( elem, value ) { - if ( value === "" ) { - elem.setAttribute( name, "auto" ); - return value; - } - } - }; - }); -} - - -// Some attributes require a special call on IE -// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !jQuery.support.hrefNormalized ) { - // href/src property should get the full normalized URL (#10299/#12915) - jQuery.each([ "href", "src" ], function( i, name ) { - jQuery.propHooks[ name ] = { - get: function( elem ) { - return elem.getAttribute( name, 4 ); - } - }; - }); -} - -if ( !jQuery.support.style ) { - jQuery.attrHooks.style = { - get: function( elem ) { - // Return undefined in the case of empty string - // Note: IE uppercases css property names, but if we were to .toLowerCase() - // .cssText, that would destroy case senstitivity in URL's, like in "background" - return elem.style.cssText || undefined; - }, - set: function( elem, value ) { - return ( elem.style.cssText = value + "" ); - } - }; -} - -// Safari mis-reports the default selected property of an option -// Accessing the parent's selectedIndex property fixes it -if ( !jQuery.support.optSelected ) { - jQuery.propHooks.selected = { - get: function( elem ) { - var parent = elem.parentNode; - - if ( parent ) { - parent.selectedIndex; - - // Make sure that it also works with optgroups, see #5701 - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - return null; - } - }; -} - -jQuery.each([ - "tabIndex", - "readOnly", - "maxLength", - "cellSpacing", - "cellPadding", - "rowSpan", - "colSpan", - "useMap", - "frameBorder", - "contentEditable" -], function() { - jQuery.propFix[ this.toLowerCase() ] = this; -}); - -// IE6/7 call enctype encoding -if ( !jQuery.support.enctype ) { - jQuery.propFix.enctype = "encoding"; -} - -// Radios and checkboxes getter/setter -jQuery.each([ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - set: function( elem, value ) { - if ( jQuery.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); - } - } - }; - if ( !jQuery.support.checkOn ) { - jQuery.valHooks[ this ].get = function( elem ) { - // Support: Webkit - // "" is returned instead of "on" if a value isn't specified - return elem.getAttribute("value") === null ? "on" : elem.value; - }; - } -}); -var rformElems = /^(?:input|select|textarea)$/i, - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|contextmenu)|click/, - rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)$/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -function safeActiveElement() { - try { - return document.activeElement; - } catch ( err ) { } -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - var tmp, events, t, handleObjIn, - special, eventHandle, handleObj, - handlers, type, namespaces, origType, - elemData = jQuery._data( elem ); - - // Don't attach events to noData or text/comment nodes (but allow plain objects) - if ( !elemData ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !(events = elemData.events) ) { - events = elemData.events = {}; - } - if ( !(eventHandle = elemData.handle) ) { - eventHandle = elemData.handle = function( e ) { - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== core_strundefined && (!e || jQuery.event.triggered !== e.type) ? - jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : - undefined; - }; - // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events - eventHandle.elem = elem; - } - - // Handle multiple events separated by a space - types = ( types || "" ).match( core_rnotwhite ) || [""]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[t] ) || []; - type = origType = tmp[1]; - namespaces = ( tmp[2] || "" ).split( "." ).sort(); - - // There *must* be a type, no attaching namespace-only handlers - if ( !type ) { - continue; - } - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend({ - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join(".") - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !(handlers = events[ type ]) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener/attachEvent if the special events handler returns false - if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - // Bind the global event handler to the element - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle, false ); - - } else if ( elem.attachEvent ) { - elem.attachEvent( "on" + type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - // Nullify elem to prevent memory leaks in IE - elem = null; - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - var j, handleObj, tmp, - origCount, t, events, - special, handlers, type, - namespaces, origType, - elemData = jQuery.hasData( elem ) && jQuery._data( elem ); - - if ( !elemData || !(events = elemData.events) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( core_rnotwhite ) || [""]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[t] ) || []; - type = origType = tmp[1]; - namespaces = ( tmp[2] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - delete elemData.handle; - - // removeData also checks for emptiness and clears the expando if empty - // so use it instead of delete - jQuery._removeData( elem, "events" ); - } - }, - - trigger: function( event, data, elem, onlyHandlers ) { - var handle, ontype, cur, - bubbleType, special, tmp, i, - eventPath = [ elem || document ], - type = core_hasOwn.call( event, "type" ) ? event.type : event, - namespaces = core_hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : []; - - cur = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf(".") >= 0 ) { - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split("."); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf(":") < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) - event.isTrigger = onlyHandlers ? 2 : 3; - event.namespace = namespaces.join("."); - event.namespace_re = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === (elem.ownerDocument || document) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) { - - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && jQuery.acceptData( cur ) && handle.apply && handle.apply( cur, data ) === false ) { - event.preventDefault(); - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) && - jQuery.acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name name as the event. - // Can't use an .isFunction() check here because IE6/7 fails that test. - // Don't do default actions on window, that's where global variables be (#6170) - if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - try { - elem[ type ](); - } catch ( e ) { - // IE<9 dies on focus/blur to hidden element (#1486,#12518) - // only reproducible on winXP IE8 native, not IE9 in IE8 mode - } - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - dispatch: function( event ) { - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( event ); - - var i, ret, handleObj, matched, j, - handlerQueue = [], - args = core_slice.call( arguments ), - handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[0] = event; - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) { - - // Triggered event must either 1) have no namespace, or - // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). - if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) - .apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( (event.result = ret) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var sel, handleObj, matches, i, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Find delegate handlers - // Black-hole SVG instance trees (#13180) - // Avoid non-left-click bubbling in Firefox (#3861) - if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) { - - /* jshint eqeqeq: false */ - for ( ; cur != this; cur = cur.parentNode || this ) { - /* jshint eqeqeq: true */ - - // Don't check non-elements (#13208) - // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== "click") ) { - matches = []; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (#13203) - sel = handleObj.selector + " "; - - if ( matches[ sel ] === undefined ) { - matches[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) >= 0 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matches[ sel ] ) { - matches.push( handleObj ); - } - } - if ( matches.length ) { - handlerQueue.push({ elem: cur, handlers: matches }); - } - } - } - } - - // Add the remaining (directly-bound) handlers - if ( delegateCount < handlers.length ) { - handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) }); - } - - return handlerQueue; - }, - - fix: function( event ) { - if ( event[ jQuery.expando ] ) { - return event; - } - - // Create a writable copy of the event object and normalize some properties - var i, prop, copy, - type = event.type, - originalEvent = event, - fixHook = this.fixHooks[ type ]; - - if ( !fixHook ) { - this.fixHooks[ type ] = fixHook = - rmouseEvent.test( type ) ? this.mouseHooks : - rkeyEvent.test( type ) ? this.keyHooks : - {}; - } - copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; - - event = new jQuery.Event( originalEvent ); - - i = copy.length; - while ( i-- ) { - prop = copy[ i ]; - event[ prop ] = originalEvent[ prop ]; - } - - // Support: IE<9 - // Fix target property (#1925) - if ( !event.target ) { - event.target = originalEvent.srcElement || document; - } - - // Support: Chrome 23+, Safari? - // Target should not be a text node (#504, #13143) - if ( event.target.nodeType === 3 ) { - event.target = event.target.parentNode; - } - - // Support: IE<9 - // For mouse/key events, metaKey==false if it's undefined (#3368, #11328) - event.metaKey = !!event.metaKey; - - return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; - }, - - // Includes some event props shared by KeyEvent and MouseEvent - props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), - - fixHooks: {}, - - keyHooks: { - props: "char charCode key keyCode".split(" "), - filter: function( event, original ) { - - // Add which for key events - if ( event.which == null ) { - event.which = original.charCode != null ? original.charCode : original.keyCode; - } - - return event; - } - }, - - mouseHooks: { - props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), - filter: function( event, original ) { - var body, eventDoc, doc, - button = original.button, - fromElement = original.fromElement; - - // Calculate pageX/Y if missing and clientX/Y available - if ( event.pageX == null && original.clientX != null ) { - eventDoc = event.target.ownerDocument || document; - doc = eventDoc.documentElement; - body = eventDoc.body; - - event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); - event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); - } - - // Add relatedTarget, if necessary - if ( !event.relatedTarget && fromElement ) { - event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - // Note: button is not normalized, so don't use it - if ( !event.which && button !== undefined ) { - event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); - } - - return event; - } - }, - - special: { - load: { - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - focus: { - // Fire native event if possible so blur/focus sequence is correct - trigger: function() { - if ( this !== safeActiveElement() && this.focus ) { - try { - this.focus(); - return false; - } catch ( e ) { - // Support: IE<9 - // If we error on focus to hidden element (#1486, #12518), - // let .trigger() run the handlers - } - } - }, - delegateType: "focusin" - }, - blur: { - trigger: function() { - if ( this === safeActiveElement() && this.blur ) { - this.blur(); - return false; - } - }, - delegateType: "focusout" - }, - click: { - // For checkbox, fire native event so checked state will be right - trigger: function() { - if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) { - this.click(); - return false; - } - }, - - // For cross-browser consistency, don't fire native .click() on links - _default: function( event ) { - return jQuery.nodeName( event.target, "a" ); - } - }, - - beforeunload: { - postDispatch: function( event ) { - - // Even when returnValue equals to undefined Firefox will still show alert - if ( event.result !== undefined ) { - event.originalEvent.returnValue = event.result; - } - } - } - }, - - simulate: function( type, elem, event, bubble ) { - // Piggyback on a donor event to simulate a different one. - // Fake originalEvent to avoid donor's stopPropagation, but if the - // simulated event prevents default then we do the same on the donor. - var e = jQuery.extend( - new jQuery.Event(), - event, - { - type: type, - isSimulated: true, - originalEvent: {} - } - ); - if ( bubble ) { - jQuery.event.trigger( e, null, elem ); - } else { - jQuery.event.dispatch.call( elem, e ); - } - if ( e.isDefaultPrevented() ) { - event.preventDefault(); - } - } -}; - -jQuery.removeEvent = document.removeEventListener ? - function( elem, type, handle ) { - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle, false ); - } - } : - function( elem, type, handle ) { - var name = "on" + type; - - if ( elem.detachEvent ) { - - // #8545, #7054, preventing memory leaks for custom events in IE6-8 - // detachEvent needed property on element, by name of that event, to properly expose it to GC - if ( typeof elem[ name ] === core_strundefined ) { - elem[ name ] = null; - } - - elem.detachEvent( name, handle ); - } - }; - -jQuery.Event = function( src, props ) { - // Allow instantiation without the 'new' keyword - if ( !(this instanceof jQuery.Event) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false || - src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || jQuery.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - if ( !e ) { - return; - } - - // If preventDefault exists, run it on the original event - if ( e.preventDefault ) { - e.preventDefault(); - - // Support: IE - // Otherwise set the returnValue property of the original event to false - } else { - e.returnValue = false; - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - if ( !e ) { - return; - } - // If stopPropagation exists, run it on the original event - if ( e.stopPropagation ) { - e.stopPropagation(); - } - - // Support: IE - // Set the cancelBubble property of the original event to true - e.cancelBubble = true; - }, - stopImmediatePropagation: function() { - this.isImmediatePropagationStopped = returnTrue; - this.stopPropagation(); - } -}; - -// Create mouseenter/leave events using mouseover/out and event-time checks -jQuery.each({ - mouseenter: "mouseover", - mouseleave: "mouseout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mousenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || (related !== target && !jQuery.contains( target, related )) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -}); - -// IE submit delegation -if ( !jQuery.support.submitBubbles ) { - - jQuery.event.special.submit = { - setup: function() { - // Only need this for delegated form submit events - if ( jQuery.nodeName( this, "form" ) ) { - return false; - } - - // Lazy-add a submit handler when a descendant form may potentially be submitted - jQuery.event.add( this, "click._submit keypress._submit", function( e ) { - // Node name check avoids a VML-related crash in IE (#9807) - var elem = e.target, - form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; - if ( form && !jQuery._data( form, "submitBubbles" ) ) { - jQuery.event.add( form, "submit._submit", function( event ) { - event._submit_bubble = true; - }); - jQuery._data( form, "submitBubbles", true ); - } - }); - // return undefined since we don't need an event listener - }, - - postDispatch: function( event ) { - // If form was submitted by the user, bubble the event up the tree - if ( event._submit_bubble ) { - delete event._submit_bubble; - if ( this.parentNode && !event.isTrigger ) { - jQuery.event.simulate( "submit", this.parentNode, event, true ); - } - } - }, - - teardown: function() { - // Only need this for delegated form submit events - if ( jQuery.nodeName( this, "form" ) ) { - return false; - } - - // Remove delegated handlers; cleanData eventually reaps submit handlers attached above - jQuery.event.remove( this, "._submit" ); - } - }; -} - -// IE change delegation and checkbox/radio fix -if ( !jQuery.support.changeBubbles ) { - - jQuery.event.special.change = { - - setup: function() { - - if ( rformElems.test( this.nodeName ) ) { - // IE doesn't fire change on a check/radio until blur; trigger it on click - // after a propertychange. Eat the blur-change in special.change.handle. - // This still fires onchange a second time for check/radio after blur. - if ( this.type === "checkbox" || this.type === "radio" ) { - jQuery.event.add( this, "propertychange._change", function( event ) { - if ( event.originalEvent.propertyName === "checked" ) { - this._just_changed = true; - } - }); - jQuery.event.add( this, "click._change", function( event ) { - if ( this._just_changed && !event.isTrigger ) { - this._just_changed = false; - } - // Allow triggered, simulated change events (#11500) - jQuery.event.simulate( "change", this, event, true ); - }); - } - return false; - } - // Delegated event; lazy-add a change handler on descendant inputs - jQuery.event.add( this, "beforeactivate._change", function( e ) { - var elem = e.target; - - if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "changeBubbles" ) ) { - jQuery.event.add( elem, "change._change", function( event ) { - if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { - jQuery.event.simulate( "change", this.parentNode, event, true ); - } - }); - jQuery._data( elem, "changeBubbles", true ); - } - }); - }, - - handle: function( event ) { - var elem = event.target; - - // Swallow native change events from checkbox/radio, we already triggered them above - if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { - return event.handleObj.handler.apply( this, arguments ); - } - }, - - teardown: function() { - jQuery.event.remove( this, "._change" ); - - return !rformElems.test( this.nodeName ); - } - }; -} - -// Create "bubbling" focus and blur events -if ( !jQuery.support.focusinBubbles ) { - jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler while someone wants focusin/focusout - var attaches = 0, - handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - if ( attaches++ === 0 ) { - document.addEventListener( orig, handler, true ); - } - }, - teardown: function() { - if ( --attaches === 0 ) { - document.removeEventListener( orig, handler, true ); - } - } - }; - }); -} - -jQuery.fn.extend({ - - on: function( types, selector, data, fn, /*INTERNAL*/ one ) { - var type, origFn; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - this.on( type, selector, data, types[ type ], one ); - } - return this; - } - - if ( data == null && fn == null ) { - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return this; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return this.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - }); - }, - one: function( types, selector, data, fn ) { - return this.on( types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each(function() { - jQuery.event.remove( this, types, fn, selector ); - }); - }, - - trigger: function( type, data ) { - return this.each(function() { - jQuery.event.trigger( type, data, this ); - }); - }, - triggerHandler: function( type, data ) { - var elem = this[0]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - } -}); -var isSimple = /^.[^:#\[\.,]*$/, - rparentsprev = /^(?:parents|prev(?:Until|All))/, - rneedsContext = jQuery.expr.match.needsContext, - // methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend({ - find: function( selector ) { - var i, - ret = [], - self = this, - len = self.length; - - if ( typeof selector !== "string" ) { - return this.pushStack( jQuery( selector ).filter(function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - }) ); - } - - for ( i = 0; i < len; i++ ) { - jQuery.find( selector, self[ i ], ret ); - } - - // Needed because $( selector, context ) becomes $( context ).find( selector ) - ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret ); - ret.selector = this.selector ? this.selector + " " + selector : selector; - return ret; - }, - - has: function( target ) { - var i, - targets = jQuery( target, this ), - len = targets.length; - - return this.filter(function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( this, targets[i] ) ) { - return true; - } - } - }); - }, - - not: function( selector ) { - return this.pushStack( winnow(this, selector || [], true) ); - }, - - filter: function( selector ) { - return this.pushStack( winnow(this, selector || [], false) ); - }, - - is: function( selector ) { - return !!winnow( - this, - - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - typeof selector === "string" && rneedsContext.test( selector ) ? - jQuery( selector ) : - selector || [], - false - ).length; - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - ret = [], - pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? - jQuery( selectors, context || this.context ) : - 0; - - for ( ; i < l; i++ ) { - for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) { - // Always skip document fragments - if ( cur.nodeType < 11 && (pos ? - pos.index(cur) > -1 : - - // Don't pass non-elements to Sizzle - cur.nodeType === 1 && - jQuery.find.matchesSelector(cur, selectors)) ) { - - cur = ret.push( cur ); - break; - } - } - } - - return this.pushStack( ret.length > 1 ? jQuery.unique( ret ) : ret ); - }, - - // Determine the position of an element within - // the matched set of elements - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1; - } - - // index in selector - if ( typeof elem === "string" ) { - return jQuery.inArray( this[0], jQuery( elem ) ); - } - - // Locate the position of the desired element - return jQuery.inArray( - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[0] : elem, this ); - }, - - add: function( selector, context ) { - var set = typeof selector === "string" ? - jQuery( selector, context ) : - jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), - all = jQuery.merge( this.get(), set ); - - return this.pushStack( jQuery.unique(all) ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter(selector) - ); - } -}); - -function sibling( cur, dir ) { - do { - cur = cur[ dir ]; - } while ( cur && cur.nodeType !== 1 ); - - return cur; -} - -jQuery.each({ - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return jQuery.dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, i, until ) { - return jQuery.dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return jQuery.dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return jQuery.dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, i, until ) { - return jQuery.dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, i, until ) { - return jQuery.dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return jQuery.sibling( elem.firstChild ); - }, - contents: function( elem ) { - return jQuery.nodeName( elem, "iframe" ) ? - elem.contentDocument || elem.contentWindow.document : - jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var ret = jQuery.map( this, fn, until ); - - if ( name.slice( -5 ) !== "Until" ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - ret = jQuery.filter( selector, ret ); - } - - if ( this.length > 1 ) { - // Remove duplicates - if ( !guaranteedUnique[ name ] ) { - ret = jQuery.unique( ret ); - } - - // Reverse order for parents* and prev-derivatives - if ( rparentsprev.test( name ) ) { - ret = ret.reverse(); - } - } - - return this.pushStack( ret ); - }; -}); - -jQuery.extend({ - filter: function( expr, elems, not ) { - var elem = elems[ 0 ]; - - if ( not ) { - expr = ":not(" + expr + ")"; - } - - return elems.length === 1 && elem.nodeType === 1 ? - jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] : - jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { - return elem.nodeType === 1; - })); - }, - - dir: function( elem, dir, until ) { - var matched = [], - cur = elem[ dir ]; - - while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { - if ( cur.nodeType === 1 ) { - matched.push( cur ); - } - cur = cur[dir]; - } - return matched; - }, - - sibling: function( n, elem ) { - var r = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - r.push( n ); - } - } - - return r; - } -}); - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, not ) { - if ( jQuery.isFunction( qualifier ) ) { - return jQuery.grep( elements, function( elem, i ) { - /* jshint -W018 */ - return !!qualifier.call( elem, i, elem ) !== not; - }); - - } - - if ( qualifier.nodeType ) { - return jQuery.grep( elements, function( elem ) { - return ( elem === qualifier ) !== not; - }); - - } - - if ( typeof qualifier === "string" ) { - if ( isSimple.test( qualifier ) ) { - return jQuery.filter( qualifier, elements, not ); - } - - qualifier = jQuery.filter( qualifier, elements ); - } - - return jQuery.grep( elements, function( elem ) { - return ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not; - }); -} -function createSafeFragment( document ) { - var list = nodeNames.split( "|" ), - safeFrag = document.createDocumentFragment(); - - if ( safeFrag.createElement ) { - while ( list.length ) { - safeFrag.createElement( - list.pop() - ); - } - } - return safeFrag; -} - -var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" + - "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", - rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g, - rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"), - rleadingWhitespace = /^\s+/, - rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, - rtagName = /<([\w:]+)/, - rtbody = /\s*$/g, - - // We have to close these tags to support XHTML (#13200) - wrapMap = { - option: [ 1, "" ], - legend: [ 1, "
", "
" ], - area: [ 1, "", "" ], - param: [ 1, "", "" ], - thead: [ 1, "", "
" ], - tr: [ 2, "", "
" ], - col: [ 2, "", "
" ], - td: [ 3, "", "
" ], - - // IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags, - // unless wrapped in a div with non-breaking characters in front of it. - _default: jQuery.support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X
", "
" ] - }, - safeFragment = createSafeFragment( document ), - fragmentDiv = safeFragment.appendChild( document.createElement("div") ); - -wrapMap.optgroup = wrapMap.option; -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -jQuery.fn.extend({ - text: function( value ) { - return jQuery.access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) ); - }, null, value, arguments.length ); - }, - - append: function() { - return this.domManip( arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.appendChild( elem ); - } - }); - }, - - prepend: function() { - return this.domManip( arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.insertBefore( elem, target.firstChild ); - } - }); - }, - - before: function() { - return this.domManip( arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - }); - }, - - after: function() { - return this.domManip( arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - }); - }, - - // keepData is for internal use only--do not document - remove: function( selector, keepData ) { - var elem, - elems = selector ? jQuery.filter( selector, this ) : this, - i = 0; - - for ( ; (elem = elems[i]) != null; i++ ) { - - if ( !keepData && elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem ) ); - } - - if ( elem.parentNode ) { - if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) { - setGlobalEval( getAll( elem, "script" ) ); - } - elem.parentNode.removeChild( elem ); - } - } - - return this; - }, - - empty: function() { - var elem, - i = 0; - - for ( ; (elem = this[i]) != null; i++ ) { - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - } - - // Remove any remaining nodes - while ( elem.firstChild ) { - elem.removeChild( elem.firstChild ); - } - - // If this is a select, ensure that it displays empty (#12336) - // Support: IE<9 - if ( elem.options && jQuery.nodeName( elem, "select" ) ) { - elem.options.length = 0; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function () { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - }); - }, - - html: function( value ) { - return jQuery.access( this, function( value ) { - var elem = this[0] || {}, - i = 0, - l = this.length; - - if ( value === undefined ) { - return elem.nodeType === 1 ? - elem.innerHTML.replace( rinlinejQuery, "" ) : - undefined; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - ( jQuery.support.htmlSerialize || !rnoshimcache.test( value ) ) && - ( jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && - !wrapMap[ ( rtagName.exec( value ) || ["", ""] )[1].toLowerCase() ] ) { - - value = value.replace( rxhtmlTag, "<$1>" ); - - try { - for (; i < l; i++ ) { - // Remove element nodes and prevent memory leaks - elem = this[i] || {}; - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch(e) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function() { - var - // Snapshot the DOM in case .domManip sweeps something relevant into its fragment - args = jQuery.map( this, function( elem ) { - return [ elem.nextSibling, elem.parentNode ]; - }), - i = 0; - - // Make the changes, replacing each context element with the new content - this.domManip( arguments, function( elem ) { - var next = args[ i++ ], - parent = args[ i++ ]; - - if ( parent ) { - // Don't use the snapshot next if it has moved (#13810) - if ( next && next.parentNode !== parent ) { - next = this.nextSibling; - } - jQuery( this ).remove(); - parent.insertBefore( elem, next ); - } - // Allow new content to include elements from the context set - }, true ); - - // Force removal if there was no new content (e.g., from empty arguments) - return i ? this : this.remove(); - }, - - detach: function( selector ) { - return this.remove( selector, true ); - }, - - domManip: function( args, callback, allowIntersection ) { - - // Flatten any nested arrays - args = core_concat.apply( [], args ); - - var first, node, hasScripts, - scripts, doc, fragment, - i = 0, - l = this.length, - set = this, - iNoClone = l - 1, - value = args[0], - isFunction = jQuery.isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( isFunction || !( l <= 1 || typeof value !== "string" || jQuery.support.checkClone || !rchecked.test( value ) ) ) { - return this.each(function( index ) { - var self = set.eq( index ); - if ( isFunction ) { - args[0] = value.call( this, index, self.html() ); - } - self.domManip( args, callback, allowIntersection ); - }); - } - - if ( l ) { - fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, !allowIntersection && this ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - if ( first ) { - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( this[i], node, i ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !jQuery._data( node, "globalEval" ) && jQuery.contains( doc, node ) ) { - - if ( node.src ) { - // Hope ajax is available... - jQuery._evalUrl( node.src ); - } else { - jQuery.globalEval( ( node.text || node.textContent || node.innerHTML || "" ).replace( rcleanScript, "" ) ); - } - } - } - } - - // Fix #11809: Avoid leaking memory - fragment = first = null; - } - } - - return this; - } -}); - -// Support: IE<8 -// Manipulating tables requires a tbody -function manipulationTarget( elem, content ) { - return jQuery.nodeName( elem, "table" ) && - jQuery.nodeName( content.nodeType === 1 ? content : content.firstChild, "tr" ) ? - - elem.getElementsByTagName("tbody")[0] || - elem.appendChild( elem.ownerDocument.createElement("tbody") ) : - elem; -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - elem.type = (jQuery.find.attr( elem, "type" ) !== null) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - var match = rscriptTypeMasked.exec( elem.type ); - if ( match ) { - elem.type = match[1]; - } else { - elem.removeAttribute("type"); - } - return elem; -} - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var elem, - i = 0; - for ( ; (elem = elems[i]) != null; i++ ) { - jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) ); - } -} - -function cloneCopyEvent( src, dest ) { - - if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { - return; - } - - var type, i, l, - oldData = jQuery._data( src ), - curData = jQuery._data( dest, oldData ), - events = oldData.events; - - if ( events ) { - delete curData.handle; - curData.events = {}; - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - - // make the cloned public data object a copy from the original - if ( curData.data ) { - curData.data = jQuery.extend( {}, curData.data ); - } -} - -function fixCloneNodeIssues( src, dest ) { - var nodeName, e, data; - - // We do not need to do anything for non-Elements - if ( dest.nodeType !== 1 ) { - return; - } - - nodeName = dest.nodeName.toLowerCase(); - - // IE6-8 copies events bound via attachEvent when using cloneNode. - if ( !jQuery.support.noCloneEvent && dest[ jQuery.expando ] ) { - data = jQuery._data( dest ); - - for ( e in data.events ) { - jQuery.removeEvent( dest, e, data.handle ); - } - - // Event data gets referenced instead of copied if the expando gets copied too - dest.removeAttribute( jQuery.expando ); - } - - // IE blanks contents when cloning scripts, and tries to evaluate newly-set text - if ( nodeName === "script" && dest.text !== src.text ) { - disableScript( dest ).text = src.text; - restoreScript( dest ); - - // IE6-10 improperly clones children of object elements using classid. - // IE10 throws NoModificationAllowedError if parent is null, #12132. - } else if ( nodeName === "object" ) { - if ( dest.parentNode ) { - dest.outerHTML = src.outerHTML; - } - - // This path appears unavoidable for IE9. When cloning an object - // element in IE9, the outerHTML strategy above is not sufficient. - // If the src has innerHTML and the destination does not, - // copy the src.innerHTML into the dest.innerHTML. #10324 - if ( jQuery.support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) { - dest.innerHTML = src.innerHTML; - } - - } else if ( nodeName === "input" && manipulation_rcheckableType.test( src.type ) ) { - // IE6-8 fails to persist the checked state of a cloned checkbox - // or radio button. Worse, IE6-7 fail to give the cloned element - // a checked appearance if the defaultChecked value isn't also set - - dest.defaultChecked = dest.checked = src.checked; - - // IE6-7 get confused and end up setting the value of a cloned - // checkbox/radio button to an empty string instead of "on" - if ( dest.value !== src.value ) { - dest.value = src.value; - } - - // IE6-8 fails to return the selected option to the default selected - // state when cloning options - } else if ( nodeName === "option" ) { - dest.defaultSelected = dest.selected = src.defaultSelected; - - // IE6-8 fails to set the defaultValue to the correct value when - // cloning other types of input fields - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -jQuery.each({ - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - i = 0, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone(true); - jQuery( insert[i] )[ original ]( elems ); - - // Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get() - core_push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -}); - -function getAll( context, tag ) { - var elems, elem, - i = 0, - found = typeof context.getElementsByTagName !== core_strundefined ? context.getElementsByTagName( tag || "*" ) : - typeof context.querySelectorAll !== core_strundefined ? context.querySelectorAll( tag || "*" ) : - undefined; - - if ( !found ) { - for ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) { - if ( !tag || jQuery.nodeName( elem, tag ) ) { - found.push( elem ); - } else { - jQuery.merge( found, getAll( elem, tag ) ); - } - } - } - - return tag === undefined || tag && jQuery.nodeName( context, tag ) ? - jQuery.merge( [ context ], found ) : - found; -} - -// Used in buildFragment, fixes the defaultChecked property -function fixDefaultChecked( elem ) { - if ( manipulation_rcheckableType.test( elem.type ) ) { - elem.defaultChecked = elem.checked; - } -} - -jQuery.extend({ - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var destElements, node, clone, i, srcElements, - inPage = jQuery.contains( elem.ownerDocument, elem ); - - if ( jQuery.support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) { - clone = elem.cloneNode( true ); - - // IE<=8 does not properly clone detached, unknown element nodes - } else { - fragmentDiv.innerHTML = elem.outerHTML; - fragmentDiv.removeChild( clone = fragmentDiv.firstChild ); - } - - if ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) && - (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) { - - // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - // Fix all IE cloning issues - for ( i = 0; (node = srcElements[i]) != null; ++i ) { - // Ensure that the destination node is not null; Fixes #9587 - if ( destElements[i] ) { - fixCloneNodeIssues( node, destElements[i] ); - } - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0; (node = srcElements[i]) != null; i++ ) { - cloneCopyEvent( node, destElements[i] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - destElements = srcElements = node = null; - - // Return the cloned set - return clone; - }, - - buildFragment: function( elems, context, scripts, selection ) { - var j, elem, contains, - tmp, tag, tbody, wrap, - l = elems.length, - - // Ensure a safe fragment - safe = createSafeFragment( context ), - - nodes = [], - i = 0; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( jQuery.type( elem ) === "object" ) { - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || safe.appendChild( context.createElement("div") ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || ["", ""] )[1].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - - tmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, "<$1>" ) + wrap[2]; - - // Descend through wrappers to the right content - j = wrap[0]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Manually add leading whitespace removed by IE - if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { - nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) ); - } - - // Remove IE's autoinserted from table fragments - if ( !jQuery.support.tbody ) { - - // String was a , *may* have spurious - elem = tag === "table" && !rtbody.test( elem ) ? - tmp.firstChild : - - // String was a bare or - wrap[1] === "
" && !rtbody.test( elem ) ? - tmp : - 0; - - j = elem && elem.childNodes.length; - while ( j-- ) { - if ( jQuery.nodeName( (tbody = elem.childNodes[j]), "tbody" ) && !tbody.childNodes.length ) { - elem.removeChild( tbody ); - } - } - } - - jQuery.merge( nodes, tmp.childNodes ); - - // Fix #12392 for WebKit and IE > 9 - tmp.textContent = ""; - - // Fix #12392 for oldIE - while ( tmp.firstChild ) { - tmp.removeChild( tmp.firstChild ); - } - - // Remember the top-level container for proper cleanup - tmp = safe.lastChild; - } - } - } - - // Fix #11356: Clear elements from fragment - if ( tmp ) { - safe.removeChild( tmp ); - } - - // Reset defaultChecked for any radios and checkboxes - // about to be appended to the DOM in IE 6/7 (#8060) - if ( !jQuery.support.appendChecked ) { - jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked ); - } - - i = 0; - while ( (elem = nodes[ i++ ]) ) { - - // #4087 - If origin and destination elements are the same, and this is - // that element, do not do anything - if ( selection && jQuery.inArray( elem, selection ) !== -1 ) { - continue; - } - - contains = jQuery.contains( elem.ownerDocument, elem ); - - // Append to fragment - tmp = getAll( safe.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( contains ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( (elem = tmp[ j++ ]) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - tmp = null; - - return safe; - }, - - cleanData: function( elems, /* internal */ acceptData ) { - var elem, type, id, data, - i = 0, - internalKey = jQuery.expando, - cache = jQuery.cache, - deleteExpando = jQuery.support.deleteExpando, - special = jQuery.event.special; - - for ( ; (elem = elems[i]) != null; i++ ) { - - if ( acceptData || jQuery.acceptData( elem ) ) { - - id = elem[ internalKey ]; - data = id && cache[ id ]; - - if ( data ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Remove cache only if it was not already removed by jQuery.event.remove - if ( cache[ id ] ) { - - delete cache[ id ]; - - // IE does not allow us to delete expando properties from nodes, - // nor does it have a removeAttribute function on Document nodes; - // we must handle all of these cases - if ( deleteExpando ) { - delete elem[ internalKey ]; - - } else if ( typeof elem.removeAttribute !== core_strundefined ) { - elem.removeAttribute( internalKey ); - - } else { - elem[ internalKey ] = null; - } - - core_deletedIds.push( id ); - } - } - } - } - }, - - _evalUrl: function( url ) { - return jQuery.ajax({ - url: url, - type: "GET", - dataType: "script", - async: false, - global: false, - "throws": true - }); - } -}); -jQuery.fn.extend({ - wrapAll: function( html ) { - if ( jQuery.isFunction( html ) ) { - return this.each(function(i) { - jQuery(this).wrapAll( html.call(this, i) ); - }); - } - - if ( this[0] ) { - // The elements to wrap the target around - var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true); - - if ( this[0].parentNode ) { - wrap.insertBefore( this[0] ); - } - - wrap.map(function() { - var elem = this; - - while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { - elem = elem.firstChild; - } - - return elem; - }).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( jQuery.isFunction( html ) ) { - return this.each(function(i) { - jQuery(this).wrapInner( html.call(this, i) ); - }); - } - - return this.each(function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - }); - }, - - wrap: function( html ) { - var isFunction = jQuery.isFunction( html ); - - return this.each(function(i) { - jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html ); - }); - }, - - unwrap: function() { - return this.parent().each(function() { - if ( !jQuery.nodeName( this, "body" ) ) { - jQuery( this ).replaceWith( this.childNodes ); - } - }).end(); - } -}); -var iframe, getStyles, curCSS, - ralpha = /alpha\([^)]*\)/i, - ropacity = /opacity\s*=\s*([^)]*)/, - rposition = /^(top|right|bottom|left)$/, - // swappable if display is none or starts with table except "table", "table-cell", or "table-caption" - // see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - rmargin = /^margin/, - rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ), - rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ), - rrelNum = new RegExp( "^([+-])=(" + core_pnum + ")", "i" ), - elemdisplay = { BODY: "block" }, - - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: 0, - fontWeight: 400 - }, - - cssExpand = [ "Top", "Right", "Bottom", "Left" ], - cssPrefixes = [ "Webkit", "O", "Moz", "ms" ]; - -// return a css property mapped to a potentially vendor prefixed property -function vendorPropName( style, name ) { - - // shortcut for names that are not vendor prefixed - if ( name in style ) { - return name; - } - - // check for vendor prefixed names - var capName = name.charAt(0).toUpperCase() + name.slice(1), - origName = name, - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in style ) { - return name; - } - } - - return origName; -} - -function isHidden( elem, el ) { - // isHidden might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); -} - -function showHide( elements, show ) { - var display, elem, hidden, - values = [], - index = 0, - length = elements.length; - - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - values[ index ] = jQuery._data( elem, "olddisplay" ); - display = elem.style.display; - if ( show ) { - // Reset the inline display of this element to learn if it is - // being hidden by cascaded rules or not - if ( !values[ index ] && display === "none" ) { - elem.style.display = ""; - } - - // Set elements which have been overridden with display: none - // in a stylesheet to whatever the default browser style is - // for such an element - if ( elem.style.display === "" && isHidden( elem ) ) { - values[ index ] = jQuery._data( elem, "olddisplay", css_defaultDisplay(elem.nodeName) ); - } - } else { - - if ( !values[ index ] ) { - hidden = isHidden( elem ); - - if ( display && display !== "none" || !hidden ) { - jQuery._data( elem, "olddisplay", hidden ? display : jQuery.css( elem, "display" ) ); - } - } - } - } - - // Set the display of most of the elements in a second loop - // to avoid the constant reflow - for ( index = 0; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - if ( !show || elem.style.display === "none" || elem.style.display === "" ) { - elem.style.display = show ? values[ index ] || "" : "none"; - } - } - - return elements; -} - -jQuery.fn.extend({ - css: function( name, value ) { - return jQuery.access( this, function( elem, name, value ) { - var len, styles, - map = {}, - i = 0; - - if ( jQuery.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - }, - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - if ( typeof state === "boolean" ) { - return state ? this.show() : this.hide(); - } - - return this.each(function() { - if ( isHidden( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - }); - } -}); - -jQuery.extend({ - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Don't automatically add "px" to these possibly-unitless properties - cssNumber: { - "columnCount": true, - "fillOpacity": true, - "fontWeight": true, - "lineHeight": true, - "opacity": true, - "order": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: { - // normalize float css property - "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat" - }, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = jQuery.camelCase( name ), - style = elem.style; - - name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) ); - - // gets hook for the prefixed version - // followed by the unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // convert relative number strings (+= or -=) to relative numbers. #7345 - if ( type === "string" && (ret = rrelNum.exec( value )) ) { - value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) ); - // Fixes bug #9237 - type = "number"; - } - - // Make sure that NaN and null values aren't set. See: #7116 - if ( value == null || type === "number" && isNaN( value ) ) { - return; - } - - // If a number was passed in, add 'px' to the (except for certain CSS properties) - if ( type === "number" && !jQuery.cssNumber[ origName ] ) { - value += "px"; - } - - // Fixes #8908, it can be done more correctly by specifing setters in cssHooks, - // but it would mean to define eight (for every problematic property) identical functions - if ( !jQuery.support.clearCloneStyle && value === "" && name.indexOf("background") === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) { - - // Wrapped to prevent IE from throwing errors when 'invalid' values are provided - // Fixes bug #5509 - try { - style[ name ] = value; - } catch(e) {} - } - - } else { - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) { - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var num, val, hooks, - origName = jQuery.camelCase( name ); - - // Make sure that we're working with the right name - name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) ); - - // gets hook for the prefixed version - // followed by the unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - //convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Return, converting to number if forced or a qualifier was provided and val looks numeric - if ( extra === "" || extra ) { - num = parseFloat( val ); - return extra === true || jQuery.isNumeric( num ) ? num || 0 : val; - } - return val; - } -}); - -// NOTE: we've included the "window" in window.getComputedStyle -// because jsdom on node.js will break without it. -if ( window.getComputedStyle ) { - getStyles = function( elem ) { - return window.getComputedStyle( elem, null ); - }; - - curCSS = function( elem, name, _computed ) { - var width, minWidth, maxWidth, - computed = _computed || getStyles( elem ), - - // getPropertyValue is only needed for .css('filter') in IE9, see #12537 - ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined, - style = elem.style; - - if ( computed ) { - - if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { - ret = jQuery.style( elem, name ); - } - - // A tribute to the "awesome hack by Dean Edwards" - // Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right - // Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels - // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values - if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - return ret; - }; -} else if ( document.documentElement.currentStyle ) { - getStyles = function( elem ) { - return elem.currentStyle; - }; - - curCSS = function( elem, name, _computed ) { - var left, rs, rsLeft, - computed = _computed || getStyles( elem ), - ret = computed ? computed[ name ] : undefined, - style = elem.style; - - // Avoid setting ret to empty string here - // so we don't default to auto - if ( ret == null && style && style[ name ] ) { - ret = style[ name ]; - } - - // From the awesome hack by Dean Edwards - // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 - - // If we're not dealing with a regular pixel number - // but a number that has a weird ending, we need to convert it to pixels - // but not position css attributes, as those are proportional to the parent element instead - // and we can't measure the parent instead because it might trigger a "stacking dolls" problem - if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) { - - // Remember the original values - left = style.left; - rs = elem.runtimeStyle; - rsLeft = rs && rs.left; - - // Put in the new values to get a computed value out - if ( rsLeft ) { - rs.left = elem.currentStyle.left; - } - style.left = name === "fontSize" ? "1em" : ret; - ret = style.pixelLeft + "px"; - - // Revert the changed values - style.left = left; - if ( rsLeft ) { - rs.left = rsLeft; - } - } - - return ret === "" ? "auto" : ret; - }; -} - -function setPositiveNumber( elem, value, subtract ) { - var matches = rnumsplit.exec( value ); - return matches ? - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : - value; -} - -function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { - var i = extra === ( isBorderBox ? "border" : "content" ) ? - // If we already have the right measurement, avoid augmentation - 4 : - // Otherwise initialize for horizontal or vertical properties - name === "width" ? 1 : 0, - - val = 0; - - for ( ; i < 4; i += 2 ) { - // both box models exclude margin, so add it if we want it - if ( extra === "margin" ) { - val += jQuery.css( elem, extra + cssExpand[ i ], true, styles ); - } - - if ( isBorderBox ) { - // border-box includes padding, so remove it if we want content - if ( extra === "content" ) { - val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // at this point, extra isn't border nor margin, so remove border - if ( extra !== "margin" ) { - val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } else { - // at this point, extra isn't content, so add padding - val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // at this point, extra isn't content nor padding, so add border - if ( extra !== "padding" ) { - val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - return val; -} - -function getWidthOrHeight( elem, name, extra ) { - - // Start with offset property, which is equivalent to the border-box value - var valueIsBorderBox = true, - val = name === "width" ? elem.offsetWidth : elem.offsetHeight, - styles = getStyles( elem ), - isBorderBox = jQuery.support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // some non-html elements return undefined for offsetWidth, so check for null/undefined - // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285 - // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668 - if ( val <= 0 || val == null ) { - // Fall back to computed then uncomputed css if necessary - val = curCSS( elem, name, styles ); - if ( val < 0 || val == null ) { - val = elem.style[ name ]; - } - - // Computed unit is not pixels. Stop here and return. - if ( rnumnonpx.test(val) ) { - return val; - } - - // we need the check for style in case a browser which returns unreliable values - // for getComputedStyle silently falls back to the reliable elem.style - valueIsBorderBox = isBorderBox && ( jQuery.support.boxSizingReliable || val === elem.style[ name ] ); - - // Normalize "", auto, and prepare for extra - val = parseFloat( val ) || 0; - } - - // use the active box-sizing model to add/subtract irrelevant styles - return ( val + - augmentWidthOrHeight( - elem, - name, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles - ) - ) + "px"; -} - -// Try to determine the default display value of an element -function css_defaultDisplay( nodeName ) { - var doc = document, - display = elemdisplay[ nodeName ]; - - if ( !display ) { - display = actualDisplay( nodeName, doc ); - - // If the simple way fails, read from inside an iframe - if ( display === "none" || !display ) { - // Use the already-created iframe if possible - iframe = ( iframe || - jQuery("