2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-04-01 00:49:25 +04:00
|
|
|
|
2006-03-31 12:41:49 +04:00
|
|
|
/*
|
2018-03-19 22:15:39 +03:00
|
|
|
* Implementation of DOM Core's Text node.
|
2006-03-31 12:41:49 +04:00
|
|
|
*/
|
|
|
|
|
2008-10-15 13:40:28 +04:00
|
|
|
#include "nsTextNode.h"
|
2013-01-04 21:02:14 +04:00
|
|
|
#include "mozilla/dom/TextBinding.h"
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
#include "nsContentUtils.h"
|
2012-11-21 14:13:57 +04:00
|
|
|
#include "mozilla/dom/DirectionalityUtils.h"
|
2019-01-02 16:05:23 +03:00
|
|
|
#include "mozilla/dom/Document.h"
|
2004-01-27 07:22:58 +03:00
|
|
|
#include "nsIDOMEventListener.h"
|
2006-09-20 07:17:11 +04:00
|
|
|
#include "nsThreadUtils.h"
|
2012-09-06 00:49:53 +04:00
|
|
|
#include "nsStubMutationObserver.h"
|
2014-03-28 00:38:33 +04:00
|
|
|
#include "mozilla/IntegerPrintfMacros.h"
|
2011-12-20 13:15:41 +04:00
|
|
|
#ifdef DEBUG
|
2012-01-10 18:19:54 +04:00
|
|
|
# include "nsRange.h"
|
2011-12-20 13:15:41 +04:00
|
|
|
#endif
|
2004-01-27 07:22:58 +03:00
|
|
|
|
2012-11-21 14:13:57 +04:00
|
|
|
using namespace mozilla;
|
2010-08-24 11:05:56 +04:00
|
|
|
using namespace mozilla::dom;
|
1998-09-06 04:16:36 +04:00
|
|
|
|
2004-01-27 07:22:58 +03:00
|
|
|
/**
|
|
|
|
* class used to implement attr() generated content
|
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsAttributeTextNode final : public nsTextNode,
|
2015-03-27 21:52:19 +03:00
|
|
|
public nsStubMutationObserver {
|
2004-01-27 07:22:58 +03:00
|
|
|
public:
|
2006-09-20 07:17:11 +04:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2018-09-21 23:45:49 +03:00
|
|
|
nsAttributeTextNode(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aNameSpaceID, nsAtom* aAttrName)
|
2018-09-21 23:45:49 +03:00
|
|
|
: nsTextNode(std::move(aNodeInfo)),
|
2012-07-30 18:20:58 +04:00
|
|
|
mGrandparent(nullptr),
|
2006-09-20 07:17:11 +04:00
|
|
|
mNameSpaceID(aNameSpaceID),
|
|
|
|
mAttrName(aAttrName) {
|
|
|
|
NS_ASSERTION(mNameSpaceID != kNameSpaceID_Unknown, "Must know namespace");
|
|
|
|
NS_ASSERTION(mAttrName, "Must have attr name");
|
2004-08-10 14:22:36 +04:00
|
|
|
}
|
2006-09-20 07:17:11 +04:00
|
|
|
|
2019-01-02 16:05:23 +03:00
|
|
|
virtual nsresult BindToTree(Document* aDocument, nsIContent* aParent,
|
2018-07-31 21:18:38 +03:00
|
|
|
nsIContent* aBindingParent) override;
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual void UnbindFromTree(bool aDeep = true,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool aNullParent = true) override;
|
2004-01-27 07:22:58 +03:00
|
|
|
|
2007-07-13 00:05:45 +04:00
|
|
|
NS_DECL_NSIMUTATIONOBSERVER_ATTRIBUTECHANGED
|
2008-10-08 15:13:26 +04:00
|
|
|
NS_DECL_NSIMUTATIONOBSERVER_NODEWILLBEDESTROYED
|
2006-09-20 07:17:11 +04:00
|
|
|
|
2018-03-19 22:50:16 +03:00
|
|
|
virtual already_AddRefed<CharacterData> CloneDataNode(
|
|
|
|
mozilla::dom::NodeInfo* aNodeInfo, bool aCloneText) const override {
|
|
|
|
RefPtr<nsAttributeTextNode> it =
|
2018-09-21 23:45:49 +03:00
|
|
|
new nsAttributeTextNode(do_AddRef(aNodeInfo), mNameSpaceID, mAttrName);
|
2018-03-19 22:50:16 +03:00
|
|
|
if (aCloneText) {
|
2005-09-11 21:15:08 +04:00
|
|
|
it->mText = mText;
|
|
|
|
}
|
|
|
|
|
2018-03-19 22:50:16 +03:00
|
|
|
return it.forget();
|
2005-09-11 21:15:08 +04:00
|
|
|
}
|
|
|
|
|
2006-09-20 07:17:11 +04:00
|
|
|
// Public method for the event to run
|
|
|
|
void UpdateText() { UpdateText(true); }
|
|
|
|
|
2004-01-27 07:22:58 +03:00
|
|
|
private:
|
2014-07-09 01:23:16 +04:00
|
|
|
virtual ~nsAttributeTextNode() {
|
|
|
|
NS_ASSERTION(!mGrandparent, "We were not unbound!");
|
|
|
|
}
|
|
|
|
|
2006-09-20 07:17:11 +04:00
|
|
|
// Update our text to our parent's current attr value
|
2011-09-29 10:19:26 +04:00
|
|
|
void UpdateText(bool aNotify);
|
2006-09-20 07:17:11 +04:00
|
|
|
|
2008-08-18 05:16:42 +04:00
|
|
|
// This doesn't need to be a strong pointer because it's only non-null
|
|
|
|
// while we're bound to the document tree, and it points to an ancestor
|
|
|
|
// so the ancestor must be bound to the document tree the whole time
|
|
|
|
// and can't be deleted.
|
2017-12-07 21:13:50 +03:00
|
|
|
Element* mGrandparent;
|
2006-09-20 07:17:11 +04:00
|
|
|
// What attribute we're showing
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t mNameSpaceID;
|
2017-10-03 01:05:19 +03:00
|
|
|
RefPtr<nsAtom> mAttrName;
|
2004-01-27 07:22:58 +03:00
|
|
|
};
|
|
|
|
|
1998-09-06 04:16:36 +04:00
|
|
|
nsTextNode::~nsTextNode() {}
|
|
|
|
|
2017-08-17 00:31:40 +03:00
|
|
|
// Use the CC variant of this, even though this class does not define
|
|
|
|
// a new CC participant, to make QIing to the CC interfaces faster.
|
2018-05-30 05:58:51 +03:00
|
|
|
NS_IMPL_ISUPPORTS_CYCLE_COLLECTION_INHERITED_0(nsTextNode, CharacterData)
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
JSObject* nsTextNode::WrapNode(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) {
|
2018-06-26 00:20:54 +03:00
|
|
|
return Text_Binding::Wrap(aCx, this, aGivenProto);
|
2013-01-04 21:02:14 +04:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
bool nsTextNode::IsNodeOfType(uint32_t aFlags) const { return false; }
|
2011-06-14 18:25:51 +04:00
|
|
|
|
2018-03-19 22:50:16 +03:00
|
|
|
already_AddRefed<CharacterData> nsTextNode::CloneDataNode(
|
2014-06-20 06:01:40 +04:00
|
|
|
mozilla::dom::NodeInfo* aNodeInfo, bool aCloneText) const {
|
2018-09-21 23:45:49 +03:00
|
|
|
RefPtr<nsTextNode> it = new nsTextNode(do_AddRef(aNodeInfo));
|
2014-03-15 23:00:17 +04:00
|
|
|
if (aCloneText) {
|
2001-12-16 09:59:31 +03:00
|
|
|
it->mText = mText;
|
1999-12-22 04:51:58 +03:00
|
|
|
}
|
2001-12-16 09:59:31 +03:00
|
|
|
|
2018-03-19 22:50:16 +03:00
|
|
|
return it.forget();
|
2001-12-16 09:59:31 +03:00
|
|
|
}
|
|
|
|
|
2014-01-04 19:02:17 +04:00
|
|
|
nsresult nsTextNode::AppendTextForNormalize(const char16_t* aBuffer,
|
|
|
|
uint32_t aLength, bool aNotify,
|
2011-09-29 10:19:26 +04:00
|
|
|
nsIContent* aNextSibling) {
|
2011-08-16 04:55:20 +04:00
|
|
|
CharacterDataChangeInfo::Details details = {
|
|
|
|
CharacterDataChangeInfo::Details::eMerge, aNextSibling};
|
|
|
|
return SetTextInternal(mText.GetLength(), 0, aBuffer, aLength, aNotify,
|
|
|
|
&details);
|
|
|
|
}
|
|
|
|
|
2019-01-02 16:05:23 +03:00
|
|
|
nsresult nsTextNode::BindToTree(Document* aDocument, nsIContent* aParent,
|
2018-07-31 21:18:38 +03:00
|
|
|
nsIContent* aBindingParent) {
|
2018-03-19 22:18:06 +03:00
|
|
|
nsresult rv = CharacterData::BindToTree(aDocument, aParent, aBindingParent);
|
2012-11-21 14:13:57 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
SetDirectionFromNewTextNode(this);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsTextNode::UnbindFromTree(bool aDeep, bool aNullParent) {
|
2015-05-08 03:07:16 +03:00
|
|
|
ResetDirectionSetByTextNode(this);
|
2012-11-21 14:13:57 +04:00
|
|
|
|
2018-03-19 22:18:06 +03:00
|
|
|
CharacterData::UnbindFromTree(aDeep, aNullParent);
|
2012-11-21 14:13:57 +04:00
|
|
|
}
|
|
|
|
|
2001-10-16 09:31:36 +04:00
|
|
|
#ifdef DEBUG
|
2012-08-22 19:56:38 +04:00
|
|
|
void nsTextNode::List(FILE* out, int32_t aIndent) const {
|
|
|
|
int32_t index;
|
1998-09-06 04:16:36 +04:00
|
|
|
for (index = aIndent; --index >= 0;) fputs(" ", out);
|
|
|
|
|
2010-01-18 02:11:02 +03:00
|
|
|
fprintf(out, "Text@%p", static_cast<const void*>(this));
|
2010-05-12 04:30:42 +04:00
|
|
|
fprintf(out, " flags=[%08x]", static_cast<unsigned int>(GetFlags()));
|
2011-12-20 13:15:41 +04:00
|
|
|
if (IsCommonAncestorForRangeInSelection()) {
|
2017-09-01 18:13:47 +03:00
|
|
|
const LinkedList<nsRange>* ranges = GetExistingCommonAncestorRanges();
|
|
|
|
int32_t count = 0;
|
|
|
|
if (ranges) {
|
|
|
|
// Can't use range-based iteration on a const LinkedList, unfortunately.
|
|
|
|
for (const nsRange* r = ranges->getFirst(); r; r = r->getNext()) {
|
|
|
|
++count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fprintf(out, " ranges:%d", count);
|
2011-12-20 13:15:41 +04:00
|
|
|
}
|
2010-05-01 22:42:47 +04:00
|
|
|
fprintf(out, " primaryframe=%p", static_cast<void*>(GetPrimaryFrame()));
|
2014-03-28 00:38:33 +04:00
|
|
|
fprintf(out, " refcount=%" PRIuPTR "<", mRefCnt.get());
|
1998-09-06 04:16:36 +04:00
|
|
|
|
|
|
|
nsAutoString tmp;
|
2001-12-16 09:59:31 +03:00
|
|
|
ToCString(tmp, 0, mText.GetLength());
|
2006-02-03 17:18:39 +03:00
|
|
|
fputs(NS_LossyConvertUTF16toASCII(tmp).get(), out);
|
1998-09-06 04:16:36 +04:00
|
|
|
|
|
|
|
fputs(">\n", out);
|
|
|
|
}
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
void nsTextNode::DumpContent(FILE* out, int32_t aIndent, bool aDumpAll) const {
|
2000-05-26 23:45:37 +04:00
|
|
|
if (aDumpAll) {
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t index;
|
2000-05-26 23:45:37 +04:00
|
|
|
for (index = aIndent; --index >= 0;) fputs(" ", out);
|
|
|
|
|
|
|
|
nsAutoString tmp;
|
2001-12-16 09:59:31 +03:00
|
|
|
ToCString(tmp, 0, mText.GetLength());
|
|
|
|
|
2004-05-23 02:15:22 +04:00
|
|
|
if (!tmp.EqualsLiteral("\\n")) {
|
2006-02-03 17:18:39 +03:00
|
|
|
fputs(NS_LossyConvertUTF16toASCII(tmp).get(), out);
|
2000-05-26 23:45:37 +04:00
|
|
|
if (aIndent) fputs("\n", out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-10-16 09:31:36 +04:00
|
|
|
#endif
|
2004-01-27 07:22:58 +03:00
|
|
|
|
2005-09-24 22:43:15 +04:00
|
|
|
nsresult NS_NewAttributeContent(nsNodeInfoManager* aNodeInfoManager,
|
2017-10-03 01:05:19 +03:00
|
|
|
int32_t aNameSpaceID, nsAtom* aAttrName,
|
2005-09-24 22:43:15 +04:00
|
|
|
nsIContent** aResult) {
|
2018-04-28 22:50:58 +03:00
|
|
|
MOZ_ASSERT(aNodeInfoManager, "Missing nodeInfoManager");
|
|
|
|
MOZ_ASSERT(aAttrName, "Must have an attr name");
|
|
|
|
MOZ_ASSERT(aNameSpaceID != kNameSpaceID_Unknown, "Must know namespace");
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
*aResult = nullptr;
|
2005-09-11 21:15:08 +04:00
|
|
|
|
2018-09-21 23:45:49 +03:00
|
|
|
RefPtr<mozilla::dom::NodeInfo> ni = aNodeInfoManager->GetTextNodeInfo();
|
2005-09-24 22:43:15 +04:00
|
|
|
|
2018-09-21 23:45:49 +03:00
|
|
|
RefPtr<nsAttributeTextNode> textNode =
|
|
|
|
new nsAttributeTextNode(ni.forget(), aNameSpaceID, aAttrName);
|
|
|
|
textNode.forget(aResult);
|
2005-09-24 22:43:15 +04:00
|
|
|
|
2005-04-06 03:54:35 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2004-01-27 07:22:58 +03:00
|
|
|
|
2014-04-27 11:06:00 +04:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED(nsAttributeTextNode, nsTextNode,
|
|
|
|
nsIMutationObserver)
|
2006-09-20 07:17:11 +04:00
|
|
|
|
2019-01-02 16:05:23 +03:00
|
|
|
nsresult nsAttributeTextNode::BindToTree(Document* aDocument,
|
2005-04-06 03:54:35 +04:00
|
|
|
nsIContent* aParent,
|
2018-07-31 21:18:38 +03:00
|
|
|
nsIContent* aBindingParent) {
|
2018-04-28 22:50:58 +03:00
|
|
|
MOZ_ASSERT(
|
|
|
|
aParent && aParent->GetParent(),
|
|
|
|
"This node can't be a child of the document or of the document root");
|
2004-01-27 07:22:58 +03:00
|
|
|
|
2005-04-06 03:54:35 +04:00
|
|
|
nsresult rv = nsTextNode::BindToTree(aDocument, aParent, aBindingParent);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2008-08-18 05:16:42 +04:00
|
|
|
NS_ASSERTION(!mGrandparent, "We were already bound!");
|
2017-12-07 21:13:50 +03:00
|
|
|
mGrandparent = aParent->GetParent()->AsElement();
|
2008-08-18 05:16:42 +04:00
|
|
|
mGrandparent->AddMutationObserver(this);
|
2006-09-20 07:17:11 +04:00
|
|
|
|
|
|
|
// Note that there is no need to notify here, since we have no
|
|
|
|
// frame yet at this point.
|
2011-10-17 18:59:28 +04:00
|
|
|
UpdateText(false);
|
2004-01-27 07:22:58 +03:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
void nsAttributeTextNode::UnbindFromTree(bool aDeep, bool aNullParent) {
|
2008-08-18 05:16:42 +04:00
|
|
|
// UnbindFromTree can be called anytime so we have to be safe.
|
|
|
|
if (mGrandparent) {
|
|
|
|
// aNullParent might not be true here, but we want to remove the
|
|
|
|
// mutation observer anyway since we only need it while we're
|
|
|
|
// in the document.
|
|
|
|
mGrandparent->RemoveMutationObserver(this);
|
2012-07-30 18:20:58 +04:00
|
|
|
mGrandparent = nullptr;
|
2005-04-06 03:54:35 +04:00
|
|
|
}
|
|
|
|
nsTextNode::UnbindFromTree(aDeep, aNullParent);
|
|
|
|
}
|
|
|
|
|
2018-03-01 14:36:58 +03:00
|
|
|
void nsAttributeTextNode::AttributeChanged(Element* aElement,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aNameSpaceID,
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* aAttribute, int32_t aModType,
|
2015-07-25 09:01:19 +03:00
|
|
|
const nsAttrValue* aOldValue) {
|
2006-09-20 07:17:11 +04:00
|
|
|
if (aNameSpaceID == mNameSpaceID && aAttribute == mAttrName &&
|
2010-08-24 11:05:56 +04:00
|
|
|
aElement == mGrandparent) {
|
2010-07-21 19:33:32 +04:00
|
|
|
// Since UpdateText notifies, do it when it's safe to run script. Note
|
|
|
|
// that if we get unbound while the event is up that's ok -- we'll just
|
|
|
|
// have no grandparent when it fires, and will do nothing.
|
2010-04-21 03:21:35 +04:00
|
|
|
void (nsAttributeTextNode::*update)() = &nsAttributeTextNode::UpdateText;
|
2017-06-12 22:34:10 +03:00
|
|
|
nsContentUtils::AddScriptRunner(NewRunnableMethod(
|
|
|
|
"nsAttributeTextNode::AttributeChanged", this, update));
|
2006-09-20 07:17:11 +04:00
|
|
|
}
|
|
|
|
}
|
2004-01-27 07:22:58 +03:00
|
|
|
|
2008-10-08 15:13:26 +04:00
|
|
|
void nsAttributeTextNode::NodeWillBeDestroyed(const nsINode* aNode) {
|
|
|
|
NS_ASSERTION(aNode == static_cast<nsINode*>(mGrandparent), "Wrong node!");
|
2012-07-30 18:20:58 +04:00
|
|
|
mGrandparent = nullptr;
|
2008-10-08 15:13:26 +04:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
void nsAttributeTextNode::UpdateText(bool aNotify) {
|
2008-08-18 05:16:42 +04:00
|
|
|
if (mGrandparent) {
|
2006-09-20 07:17:11 +04:00
|
|
|
nsAutoString attrValue;
|
2008-08-18 05:16:42 +04:00
|
|
|
mGrandparent->GetAttr(mNameSpaceID, mAttrName, attrValue);
|
2006-09-20 07:17:11 +04:00
|
|
|
SetText(attrValue, aNotify);
|
2017-07-06 15:00:35 +03:00
|
|
|
}
|
2006-09-20 07:17:11 +04:00
|
|
|
}
|