API-CHANGES.txt 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798
  1. 0.19.1:
  2. * Deprecate amber/boot api nextId, prop globalJsVariables.
  3. * Remove amber/boot prop reservedWords (with the hope no one uses it directly).
  4. * Deprecate ProtoObject >> identityHash.
  5. * Deprecate SmalltalkImage >> packageAt: in favour of explicit #packageAt:ifAbsent:.
  6. + AmberBootstrapInitialization class >>
  7. + run
  8. + initializeClasses
  9. + organizeClasses
  10. + otganizeMethods
  11. + Behavior >>
  12. + basicOrganization
  13. + ClassOrganizer >>
  14. + theClass
  15. + ClassOrganizer class >>
  16. + on:
  17. + Compiler class >>
  18. + eval:
  19. + JavaScriptException >>
  20. + shouldBeStubbed
  21. + wrap
  22. + Message class >>
  23. + selector:arguments:notUnderstoodBy:
  24. + MethodContext >>
  25. + stubHere
  26. + stubToAtMost:
  27. + NonBooleanReceiver class >>
  28. + signalOn:
  29. + Package >>
  30. + evalBlock
  31. + evalBlock:
  32. + Package class >>
  33. + named:javaScriptDescriptor:
  34. + SmalltalkImage >>
  35. + packageDictionary
  36. + TBehaviorProvider >>
  37. + methodOrganizationEnter:andLeave:
  38. + TMasterBehavior >>
  39. + definedMethods
  40. + enterOrganization
  41. + leaveOrganization
  42. + Trait >>
  43. + basicOrganization
  44. + basicOrganization:
  45. + UndefinedObject >>
  46. + ==
  47. - Package >>
  48. - basicName:
  49. - basicImports
  50. - ProtoObject >>
  51. - isSameInstanceAs:
  52. - ObjectTest >>
  53. - testIdentityHash
  54. 0.19.0:
  55. * Remove class Thenable, add trait TThenable.
  56. * Behavior / Trait hierarchy uses traits.
  57. + NativeFunction class >>
  58. + isNativeFunction:
  59. + IRInstructions >>
  60. + isSelf
  61. + isSuper
  62. + IRVariable >>
  63. + isSelf
  64. + isSuper
  65. + ScopeVar >>
  66. + isSelf
  67. + isSuper
  68. + PseudoVar >>
  69. + isSelf
  70. + isSuper
  71. +UndefinedObject >>
  72. + identityHash
  73. + value
  74. - IRSend >>
  75. - isSuperSend
  76. 0.18.3:
  77. * Move {add,remove}Element from Array.prototype to kernel API.
  78. * New superclass of Behavior named BehaviorBody, pushed up some methods.
  79. * Represents named holder of methods; hierarchy and instantiation left to Behavior.
  80. * Add class Trait as subclass of BehaviorBody.
  81. * Add class TraitTransformation.
  82. * Deprecate #asJSON in favour of #asJavaScriptObject.
  83. * Deprecate #asJavascript in favour of #asJavaScriptSource.
  84. + BehaviorBody >>
  85. + setTraitComposition:
  86. + traitCompositionDefinition
  87. + traitUsers
  88. + allSubclassesDo:
  89. + superclass
  90. + Trait >>
  91. + allInstanceVariableNames
  92. + allSubclassesDo:
  93. + asJavascript
  94. + asTraitComposition
  95. + category
  96. + classTag
  97. + definition
  98. + package
  99. + superclass
  100. + theMetaClass
  101. + theNonMetaClass
  102. + exportBehaviorDefinitionTo:using:
  103. + traitUsers
  104. + package:
  105. + Trait class >>
  106. + named:package:
  107. + named:uses:package:
  108. + TraitTransformation >>
  109. + -
  110. + @
  111. + addAliases:
  112. + addExclusions:
  113. + aliases
  114. + asJSON
  115. + asJavascript
  116. + asTraitComposition
  117. + asTraitTransformation
  118. + definition
  119. + exclusions
  120. + initialize
  121. + postCopy
  122. + trait
  123. + trait:
  124. + Collection >>
  125. + copyWithout:
  126. + SequenceableCollection >>
  127. + reverseDo:
  128. + Array >>
  129. + asTraitComposition
  130. + amber/boot api >>
  131. + addElement
  132. + removeElement
  133. + wrapJavaScript
  134. + CharacterArray >>
  135. + asSymbolPrintOn:
  136. + symbolPrintString
  137. + String >>
  138. + isSelector
  139. + StringStream >>
  140. + print:
  141. + printSymbol:
  142. + Package >>
  143. + traitCompositions
  144. + Class >>
  145. + subClass:
  146. + subClass:uses:
  147. + subClass:uses:instanceVariables:
  148. + subClass:uses:instanceVariables:category:
  149. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  150. + subClass:uses:instanceVariables:package:
  151. + UndefinedObject >>
  152. + subClass:
  153. + subClass:uses:
  154. + subClass:uses:instanceVariables:
  155. + subClass:uses:instanceVariables:category:
  156. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  157. + subClass:uses:instanceVariables:package:
  158. + Metaclass >>
  159. + uses:instanceVariableNames:
  160. - Association >>
  161. - importsString
  162. - String >>
  163. - importsString
  164. - AbstractExporter
  165. - classNameFor:
  166. - Exporter >>
  167. - jsClassNameFor:
  168. 0.18.2:
  169. * Add Platform-DOM package with DOM-related stuff.
  170. * Platform-DOM not loaded by default. Packages that will use it will import it.
  171. + PlatformDom class >>
  172. + isFeasible
  173. + isDomNode:
  174. + newCustomEvent:detail:
  175. + toArray:
  176. + CharacterArray >>
  177. + asDomNode
  178. + Collection >>
  179. + asDomNode
  180. + JSObjectProxy >>
  181. + asDomNode
  182. + String >>
  183. + htmlTextContent
  184. 0.18.1:
  185. + ASTNode >>
  186. + withTail:
  187. - SendNode >>
  188. - valueWithReceiver:
  189. 0.18.0:
  190. * Remove class RethrowErrorHandler (hack for cli before 0.12.3).
  191. * Add Kernel-Dag package with abstract DAG-node and DAG-node visitor.
  192. * Some internal API changes in Compiler-* (including the move to DAG-node).
  193. - Object >>
  194. - throw:
  195. 0.17.0:
  196. * Remove classes InterfacingObject, PlatformInterface.
  197. * Deprecate $boot.nil (use $boot.nilAsReceiver).
  198. + amber/boot api >>
  199. + nilAsReceiver
  200. - NativeFunction class >>
  201. - constructor:
  202. - constructor:value:
  203. - constructor:value:value:
  204. - constructor:value:value:value:
  205. 0.16.1:
  206. * Deprecate $boot.dnu (use $boot.nilAsClass).
  207. + amber/boot api >>
  208. + nilAsClass
  209. 0.16.0:
  210. * Deprecate ClassBuilder >> setupClass:
  211. * $core.initialize now returns a Promise
  212. * $core.addClass now returns the class
  213. + amber/boot api >>
  214. + send2
  215. + traverseClassTree
  216. + Promise class >>
  217. + new
  218. - amber/boot api >>
  219. - wrapClassName
  220. - send
  221. - allSubclasses
  222. - AbstractCodeGenerator >>
  223. - classNameFor:
  224. 0.15.1:
  225. * Thenable class added
  226. * Promise class added, wraps JS Promise, subclass of Thenable
  227. + Thenable >>
  228. + catch:
  229. + on:do:
  230. + on:do:catch:
  231. + then:
  232. + then:catch:
  233. + then:on:do:
  234. + then:on:do:catch:
  235. + JSObjectProxy >>
  236. + catch:
  237. + on:do:
  238. + on:do:catch:
  239. + then:
  240. + then:catch:
  241. + then:on:do:
  242. + then:on:do:catch:
  243. + amber/boot api >>
  244. + seamless
  245. + Promise class >>
  246. + new:
  247. + forBlock:
  248. + value:
  249. + signal:
  250. + all:
  251. + any:
  252. 0.14.18:
  253. * Some internal API changes in Compiler-*.
  254. 0.14.14:
  255. * InterfacingObject >> ajax: deprecated
  256. * PlatformInterface class deprecated
  257. * Class BrowserInterface removed
  258. * Class Terminal, BrowserTerminal added
  259. * Class Platform, BrowserPlatform added
  260. + Environment >>
  261. + renamePackage:to:
  262. + Platform class >>
  263. + globals
  264. + newXhr
  265. + Terminal class >>
  266. + alert:
  267. + confirm:
  268. + prompt:
  269. + prompt:default:
  270. SmalltalkImage >>
  271. + existsJsGlobal:
  272. - PlatformInterface class >>
  273. - initialize
  274. - setWorker:
  275. 0.14.12:
  276. + JSObjectProxy >>
  277. + putOn:
  278. + ProtoStream >>
  279. + nextPutJSObject:
  280. 0.14.11:
  281. * Basic streaming protocol extracted from Stream to ProtoStream
  282. + Object >>
  283. + in:
  284. + JSObjectProxy >>
  285. + in:
  286. 0.14.10:
  287. + JSObjectProxy class >>
  288. + addObjectVariablesTo:ofProxy:
  289. + compareJSObjectOfProxy:withProxy:
  290. + forwardMessage:withArguments:ofProxy:
  291. + jsObject:ofProxy:
  292. + lookupProperty:ofProxy:
  293. - JSObjectProxy >>
  294. - jsObject:
  295. - lookupProperty:
  296. - compareJSObjectWith:
  297. - addObjectVariablesTo:
  298. - forwardMessage:withArguments:
  299. 0.14.4:
  300. + AmdExporter >>
  301. + importsForOutput:
  302. + AbstractCodeGenerator >>
  303. + currentPackage
  304. + currentPackage:
  305. + Compiler >>
  306. + currentPackage
  307. + currentPackage:
  308. + compile:forClass:protocol:
  309. + compileNode:forClass:package:
  310. + SemanticAnalyzer >>
  311. + thePackage
  312. + thePackage:
  313. + isVariableUndefined:inPackage:
  314. - Compiler >>
  315. - compile:
  316. - compile:forClass:
  317. - compileExpression:
  318. - SemanticAnalyzer >>
  319. - isVariableGloabllyUndefined:
  320. - Behavior >>
  321. - compile:
  322. 0.14.3:
  323. * #heliosClass is now #classTag
  324. + Compiler >>
  325. + eval:forPackage:
  326. + Behavior >>
  327. + packageOfProtocol:
  328. + Exporter >>
  329. + exportPackageContextOf:on:
  330. + exportPackageImportsOf:on:
  331. + Package >>
  332. + basicImports
  333. + imports
  334. + imports:
  335. + importsDefinition
  336. + importsFromJson:
  337. + importsAsJson
  338. + sortedImportsAsArray
  339. + validateImports:
  340. + Package class >>
  341. + named:imports:transport:
  342. + Association >>
  343. + importsString
  344. + String >>
  345. + importsString
  346. + ProtoObject >>
  347. + ifNil:
  348. + ifNil:ifNotNil:
  349. + ifNotNil:
  350. + ifNotNil:ifNil:
  351. + isNil
  352. + notNil
  353. - Object >>
  354. - ifNil:
  355. - ifNil:ifNotNil:
  356. - ifNotNil:
  357. - ifNotNil:ifNil:
  358. - isNil
  359. - notNil
  360. 0.14.1:
  361. * NativeFunction class >> constructor:[value:...] deprecated
  362. + NativeFunction class >>
  363. + constructorNamed:
  364. + constructorNamed:value:
  365. + constructorNamed:value:value:
  366. + constructorNamed:value:value:value:
  367. + constructorOf:
  368. + constructorOf:value:
  369. + constructorOf:value:value:
  370. + constructorOf:value:value:value:
  371. + functionNamed:
  372. + functionNamed:value:
  373. + functionNamed:value:value:
  374. + functionNamed:value:value:value:
  375. + functionNamed:valueWithArgs:
  376. + functionOf:
  377. + functionOf:value:
  378. + functionOf:value:value:
  379. + functionOf:value:value:value:
  380. + functionOf:valueWithArgs:
  381. + methodOf:this:
  382. + methodOf:this:value:
  383. + methodOf:this:value:value:
  384. + methodOf:this:value:value:value:
  385. + methodOf:this:valueWithArgs:
  386. + SmalltalkImage >>
  387. + optOut:
  388. + cancelOptOut:
  389. 0.14.0:
  390. + Object >>
  391. + asJQuery
  392. + asJQueryInContext:
  393. + BlockClosure >>
  394. + asJQuery
  395. + asJQueryInContext:
  396. - AnnouncementSubscription >>
  397. - block
  398. - block:
  399. - Collection >>
  400. - contains:
  401. - String >>
  402. - asSelector
  403. - asJavaScriptSelector
  404. - SmalltalkImage >>
  405. - at:
  406. - at:ifAbsent:
  407. - at:put:
  408. - current
  409. - vm
  410. - createPackage:properties:
  411. - MethodContext >>
  412. - temps
  413. - Object >>
  414. - try:catch:
  415. 0.13.2:
  416. + SourceArea class >>
  417. + codeMirror
  418. 0.13.1:
  419. * String >> asSelector is now String >> asJavaScriptMethodName
  420. * String >> asJavaScriptSelector is now String >> asJavaScriptPropertyName
  421. * smalltalk.selector is now smalltalk.st2js
  422. * smalltalk.convertSelector is now smalltalk.js2st
  423. * Collection >> ifEmpty:ifNotEmpty: family passes self to ifNotEmpty: block
  424. * Smalltalk vm is now Smalltalk core
  425. * boot.js's .vm is now .api
  426. * amber load sets' .vm is now .api
  427. * Internal variables smalltalk/globals/_st are now $core/$globals/$recv
  428. + smalltalk.
  429. + accessJavaScript
  430. + Object >>
  431. + postMessageTo:
  432. + postMessageTo:origin:
  433. + Class >>
  434. + heliosClass
  435. + SmalltalkImage >>
  436. + core
  437. + amber/boot exports
  438. + api
  439. + amber/{devel,deploy,lang} exports
  440. + api
  441. - ProtoObject class >>
  442. - heliosClass
  443. - Object class >>
  444. - heliosClass
  445. 0.12.6:
  446. + String >>
  447. + value:
  448. + ProtocolAnnouncement >>
  449. + package
  450. + Behavior >>
  451. + isTestClass
  452. + Package >>
  453. + isTestPackage
  454. + amber/{devel,deploy,lang} exports
  455. + nil
  456. + amber/helpers exports
  457. + nil
  458. 0.12.4:
  459. * Package Canvas renamed to Web
  460. * Object >> try:catch: deprecated in favour of BlockClosure >> tryCatch:
  461. + Announcer >>
  462. + on:do:for:
  463. + Node >>
  464. + navigationNodeAt:ifAbsent:
  465. + BlockClosure >>
  466. + tryCatch:
  467. + Environment >>
  468. + evaluate:for:
  469. + AmberCli >>
  470. + version:
  471. + Object >>
  472. + deprecatedAPI:
  473. - Environment >>
  474. - eval:on:
  475. - evaluateString:on:
  476. 0.12.3:
  477. * Package Import-Export renamed to Kernel-ImportExport
  478. * A dozen of methods moved from Object to ProtoObject
  479. * HashedCollection >> at:ifAbsentPut: pushed up to SequenceableCollection
  480. * HashedCollection >> , is now allowed (removed shouldNotImplement)
  481. * HashedCollection and Dictionary both subclasses of AssociativeCollection
  482. * Smalltalk class moved to SmalltalkImage class, Smalltalk is now global var
  483. * Smalltalk current deprecated in favour of Smalltalk
  484. * Smalltalk at:[put:] deprecated in favour of Smalltalk globals at:[put:]
  485. * <smalltalk.ClassName> deprecated in favour of <globals.ClassName>
  486. + CompiledMethod >>
  487. + defaultProtocol
  488. + Behavior >>
  489. + compile:protocol:
  490. + removeProtocolIfEmpty:
  491. + Package >>
  492. + load
  493. + loadFromNamespace:
  494. + Package class >>
  495. + load:
  496. + load:fromNamespace:
  497. + PackageTransport >> load
  498. + PackageHandler >> load:
  499. + AmdPackageHandler >> load:
  500. + Set >> removeAll
  501. + AssociativeCollection class
  502. + BucketStore class
  503. + SmalltalkImage >>
  504. + globals
  505. + vm
  506. + settings
  507. + Setting class
  508. + String >>
  509. + asSetting
  510. + asSettingIfAbsent:
  511. + settingValue
  512. + settingValueIfAbsent:
  513. + settingValue:
  514. + Smalltalk global variable
  515. - CompiledMethod >>
  516. - category: (use #protocol:)
  517. - defaultCategory
  518. - Behavior >> compile:category:
  519. - HTMLCanvas class >>
  520. - browserVersion
  521. - isMSIE
  522. - isMozilla
  523. - isOpera
  524. - isWebkit
  525. 0.12.2:
  526. * Collection >> contains: is deprecated in favor of anySatisfy:
  527. + Announcer >> on:doOnce:
  528. + String >>
  529. + uriEncoded
  530. + uriDecoded
  531. + uriComponentEncoded
  532. + uriComponentDecoded
  533. + Collection >>
  534. + removeAll
  535. + ifEmpty:ifNotEmpty:
  536. + ifNotEmpty:ifEmpty:
  537. + anyOne
  538. + noneSatisfy:
  539. + anySatisfy:
  540. + allSatisfy:
  541. 0.12.0:
  542. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  543. * Existing classes moved to new KernelInfrastructure package
  544. * ImporterExporter
  545. * are now StreamExporters
  546. * aware of AMD namespaces
  547. * support transport types and commit channels
  548. + Node >>
  549. + nextChild
  550. + method
  551. + postCopy
  552. + isCascadeNode
  553. + isLastChild
  554. + BlockNode >>
  555. + nextNode:
  556. + nextChild
  557. + SendNode >>
  558. + isCascadeSendNode
  559. + shouldBeAliased
  560. + CompiledMethod >> sendTo:arguments:
  561. + Array >>
  562. + addFirst:
  563. + removeLast
  564. + Number >>
  565. + ceiling
  566. + floor
  567. + asNumber
  568. + //
  569. + cos
  570. + sin
  571. + tan
  572. + arcCos
  573. + arcSin
  574. + arcTan
  575. + log
  576. + log:
  577. + raisedTo:
  578. + sign
  579. + **
  580. + ln
  581. + e
  582. + String class >> esc
  583. + String >>
  584. + asMutator
  585. + capitalized
  586. + isCapitalized
  587. + JSProxy >> printString
  588. + Behavior >>
  589. + ownProtocols
  590. + ownMethods
  591. + JSStream >> nextPutSendIndexFor:
  592. + InterfacingObject class
  593. + Interpreter class
  594. + DocumentFragmentTag class
  595. + AbstractExporter class
  596. + PlatformInterface class
  597. - Node >> extent
  598. - JSStream >> nextPutStatement:with:
  599. - Smalltalk.installSuperclass()
  600. - ClassReferenceNode class (now handled via VariableNode)
  601. 0.11.0:
  602. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  603. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  604. * Object>>printString
  605. * replace >>printString with >>printOn:
  606. * replace >>storeString with >>printString
  607. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  608. * Package>>fetch: is now Package>>load:
  609. * Package>>fetch:prefix: is now Package>>load:prefix:
  610. * Queue>>front replaced by Queue>>next
  611. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  612. * Queue>>back: replaced by Queue>>nextPut:
  613. * smalltalk.addMethod() does not use explicit JS selector
  614. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  615. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  616. * String>>asJavaScriptSelector moved to Kernel-Objects package
  617. + Object>>asString
  618. + Object>>putOn:
  619. + String>>isVowel
  620. + Collection>>putOn:
  621. + CharacterArray>>putOn:
  622. + Stream>><<
  623. + Stream>>write
  624. + SequenceableCollection>>newStream
  625. + SequenceableCollection>>readStream
  626. + SequenceableCollection>>stream
  627. + SequenceableCollection>>streamClass
  628. + SequenceableCollection>>writeStream
  629. + Collection>>isImmutable
  630. + Stream>>nextPutString:
  631. + StringStream>>nextPutString:
  632. + JSStream>>nextPutClassRefFunction:
  633. + String>>crlfSanitized
  634. + inlined Block now also responds to >>value:
  635. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  636. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  637. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  638. + Parser: Symbols for binarie selectores
  639. + Package>>commit
  640. + AIContext>>initializeLocals
  641. + ASTInterpreter>>withBlockContext:
  642. + smalltalk.allSelectors()
  643. + Object>>isCompiledMethod
  644. + Object>>isPackage
  645. + Object>>isBehavior
  646. + ClassMoved Announcemen class
  647. + Behavior>>includesBehavior:
  648. + Environment>>classes
  649. + Environment>>allSelectors
  650. + Environment>>removeProtocol:
  651. + Environment>>renameProtocol:to:in:
  652. + CompiledMethod>>protocol:
  653. + Smalltalk>>globalJsVariables
  654. + Smalltalk>>addGlobalJsVariable:
  655. + Smalltalk>>deleteGlobalJsVariable:
  656. - Object>>storeOn:
  657. - Object>>log:block:
  658. - Object>>printNl
  659. - Compiler-IR.st >>javascriptSelector
  660. - Compiler-IR.st >>nextPutVar:
  661. - Kernel-Collections.st >>asSuperSelector
  662. - Collection>>readStream
  663. - Collection>>stream
  664. - Collection>>streamClass
  665. - Collection>>writeStream
  666. - Symbol class (replaced with String)
  667. - IRInlinedNonLocalReturn class
  668. - IRInlinedSend>>nonLocalReturnInliner
  669. - IRNonLocalReturnInliner class
  670. - Package>>dependencies
  671. - Package>>dependencies:
  672. - Package>>properties
  673. - Package>>jsProperties
  674. - Package>>jsProperties:
  675. - Package>>propertiesAsJSON
  676. - Package>>propertyAt:
  677. - Package>>propertyAt:ifAbsent:
  678. - Package>>propertyAt:put:
  679. - Browser>>ajaxPutAt:data: