سلام ، آیا این بازدید اول شماست ؟ یا
نمایش نتایج: از شماره 1 تا 4 , از مجموع 4

موضوع: مشکل با RSS در SMF

Hybrid View

پست قبلی پست قبلی   پست بعدی پست بعدی
  1. #1

    تاریخ عضویت
    Apr 2008
    محل سکونت
    بیابان
    نوشته ها
    669
    تشکر
    0
    تشکر شده 2 بار در 2 ارسال

    مشکل با RSS در SMF

    سلام .
    کسی میدونه چرا خروجی اس ام اف ما این شکلی شده؟
    ببینید:
    [مهمان/کاربر گرامی برای دیدن لینک ها ابتدا باید عضو سایت شوید و لاگین کنید برای ثبت نام اینجا کلیک کنید]
    خودم یه چیزایی حدس میزنم ولی میخوام نظر اساتید رو هم بدونم

    جهت مشاهده لینک ها باید ثبت نام کنید یا لاگین کنید.


  2. # ADS
    تبلیغات در جوملا فارسی
    تاریخ عضویت
    Always
    محل سکونت
    Advertising world
    نوشته ها
    Many
     

  3. #2

    تاریخ عضویت
    Apr 2008
    محل سکونت
    بیابان
    نوشته ها
    669
    تشکر
    0
    تشکر شده 2 بار در 2 ارسال

    پاسخ : مشکل با RSS در SMF

    آقا خودم حلش کردم
    مشکل ازین جاست که وقتی توی نام تاپیک ها از بعضی کاراکتر ها استفاده میکنیم خروجی(RSS) ارور میده
    دوستان علاقه مند میتونن اینجا رو بخونن تا اطلاعات بیشتری داشته باشن
    [مهمان/کاربر گرامی برای دیدن لینک ها ابتدا باید عضو سایت شوید و لاگین کنید برای ثبت نام اینجا کلیک کنید]

    جهت مشاهده لینک ها باید ثبت نام کنید یا لاگین کنید.


  4. #3

    تاریخ عضویت
    Sep 2007
    محل سکونت
    آغوش خدا
    نوشته ها
    1,007
    تشکر
    0
    تشکر شده 3 بار در 3 ارسال

    پاسخ : مشکل با RSS در SMF

    خدا رو شکر به زودی مشکلتون حل شد
    [quote author=dj_ahmad link=topic=17702.msg94175#msg94175 date=1227282628]
    وقتی توی نام تاپیک ها از بعضی کاراکتر ها استفاده میکنیم خروجی(RSS) ارور میده
    [/quote]
    ممکنه بفرمایید چه کاراکترهایی؟

    جهت مشاهده لینک ها باید ثبت نام کنید یا لاگین کنید.


  5. #4

    تاریخ عضویت
    Apr 2008
    محل سکونت
    بیابان
    نوشته ها
    669
    تشکر
    0
    تشکر شده 2 بار در 2 ارسال

    پاسخ : مشکل با RSS در SMF

    2.3 Common Syntactic Constructs

    This section defines some symbols used widely in the grammar.

    S (white space) consists of one or more space (#x20) characters, carriage returns, line feeds, or tabs.
    White Space[3] S ::= (#x20 | #x9 | #xD | #xA)+


    Note:

    The presence of #xD in the above production is maintained purely for backward compatibility with the First Edition. As explained in 2.11 End-of-Line Handling, all #xD characters literally present in an XML document are either removed or replaced by #xA characters before any other processing is done. The only way to get a #xD character to match this production is to use a character reference in an entity value literal.

    Characters are classified for convenience as letters, digits, or other characters. A letter consists of an alphabetic or syllabic base character or an ideographic character. Full definitions of the specific characters in each class are given in B Character Classes.

    [Definition: A Name is a token beginning with a letter or one of a few punctuation characters, and continuing with letters, digits, hyphens, underscores, colons, or full stops, together known as name characters.] Names beginning with the string "xml", or with any string which would match (('X'|'x&#039 ('M'|'m&#039 ('L'|'l&#039), are reserved for standardization in this or future versions of this specification.

    Note:

    The Namespaces in XML Recommendation [XML Names] assigns a meaning to names containing colon characters. Therefore, authors should not use the colon in XML names except for namespace purposes, but XML processors must accept the colon as a name character.

    An Nmtoken (name token) is any mixture of name characters.
    Names and Tokens[4] NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' | CombiningChar | Extender
    [5] Name ::= (Letter | '_' | ':&#039 (NameChar)*
    [6] Names ::= Name (#x20 Name)*
    [7] Nmtoken ::= (NameChar)+
    [8] Nmtokens ::= Nmtoken (#x20 Nmtoken)*


    Note:

    The Names and Nmtokens productions are used to define the validity of tokenized attribute values after normalization (see 3.3.1 Attribute Types).

    Literal data is any quoted string not containing the quotation mark used as a delimiter for that string. Literals are used for specifying the content of internal entities (EntityValue), the values of attributes (AttValue), and external identifiers (SystemLiteral). Note that a SystemLiteral can be parsed without scanning for markup.
    Literals[9] EntityValue ::= '"' ([^%&"] | PEReference | Reference)* '"'
    | "'" ([^%&'] | PEReference | Reference)* "'"
    [10] AttValue ::= '"' ([^<&"] | Reference)* '"'
    | "'" ([^<&'] | Reference)* "'"
    [11] SystemLiteral ::= ('"' [^"]* '"&#039 | ("'" [^']* "'&quot
    [12] PubidLiteral ::= '"' PubidChar* '"' | "'" (PubidChar - "'&quot* "'"
    [13] PubidChar ::= #x20 | #xD | #xA | [a-zA-Z0-9] | [-'()+,./:=?;!*#@$_%]


    Note:

    Although the EntityValue production allows the definition of a general entity consisting of a single explicit < in the literal (e.g., <!ENTITY mylt "<"&gt, it is strongly advised to avoid this practice since any reference to that entity will cause a well-formedness error.

    جهت مشاهده لینک ها باید ثبت نام کنید یا لاگین کنید.


علاقه مندی ها (Bookmarks)

علاقه مندی ها (Bookmarks)

مجوز های ارسال و ویرایش

  • شما نمیتوانید موضوع جدیدی ارسال کنید
  • شما امکان ارسال پاسخ را ندارید
  • شما نمیتوانید فایل پیوست کنید.
  • شما نمیتوانید پست های خود را ویرایش کنید
  •