• Page 1 of 1
  • 1
UcozBaze All Scripts And Templates » Scripts and Coding » Other » Last edited on ucoz (Last edited on ucoz)
Last edited on ucoz
GoblinaSDate: Thursday, 2011-10-06, 11:05 PM | Message # 1
Group: S-Moderator
Messages: 380
3


Description:
This script display the date and the time when an entry was last modified.

Installation:
1. Add the following code into your CSS:

Code
.news_edit {
   background: url(http://uscripts.de/images/news_edit.png) no-repeat left 5px;
   padding: 0px 0px 0px 40px;
   margin: 4px 0px 0px 0px;
   min-height: 52px;
}
.copy { font-size: 8pt }
.quote {
   color: #757575;
   background-color: #FFE2D5;
   border: 1px dotted #F93;
   text-align: justify;
   padding: 5px;
}


2. Add the following code after (or just at the top in the global block "Top part of the website")

Code
<script type="text/javascript">
   function convertLD(lastmod){
   var months = ['Jan','Feb','March','April','May','June','July','Aug','Sep','Oct','Nov','Dec'];
   var lmd=[];var d=new Date();if (typeof lastmod=='string' && lastmod.length>5){lastmod=parseInt(lastmod);}if (typeof lastmod=='number' && !isNaN(lastmod)){d.setTime(lastmod*1000);}var cday=d.getDate();if(cday<=9){cday='0'+cday};var cmin=d.getMinutes();if(cmin<=9){cmin='0'+cmin};var csec=d.getSeconds();if(csec<=9){csec='0'+csec};var chour=d.getHours();if(chour<=9){chour='0'+chour};var mon=d.getMonth()+1;if(mon<=9){mon='0'+mon};var month=months[d.getMonth()];var year=d.getFullYear();
   lmd['month'] = month;
   lmd['year'] = year;
   lmd['mon'] = mon;
   lmd['day'] = cday;
   lmd['hour'] = chour;
   lmd['min'] = cmin;
   lmd['sec'] = csec
   lmd['time'] = chour+':'+cmin+':'+csec;
   return (lmd);
   }
</script>


3. Now at the following code at the top of the "Appearance of entries" of any module the following code:

Code
<script type="text/javascript">var lmd=convertLD('$LASTMOD$');</script>


4. Now at the same template at the following code after $MESSAGE$.

Code
<?if($LASTMOD$ != $TIMESTAMP$)?>
<div class="news_edit">

   <span class="copy"><i>Last edited on</i></span>
   <div class="quote"><script type="text/javascript">document.write(lmd['day']+'.'+lmd['mon']+'.'+lmd['year'])</script> at <script type="text/javascript">document.write(lmd['time'])</script></div>
</div>
<?endif?>


5. Now go to Page with entry full text and its comments and add the following code after $MESSAGE$:

Code
<?if($LASTMOD$ != $TIMESTAMP$)?>
<script type="text/javascript">var lmd=convertLD('$LASTMOD$');</script>
<div class="news_edit">

   <span class="copy"><i>Last edited on</i></span>
   <div class="quote"><script type="text/javascript">document.write(lmd['day']+'.'+lmd['mon']+'.'+lmd['year'])</script> at <script type="text/javascript">document.write(lmd['time'])</script></div>
</div>
<?endif?>


 
Message


Description:
This script display the date and the time when an entry was last modified.

Installation:
1. Add the following code into your CSS:

Code
.news_edit {
   background: url(http://uscripts.de/images/news_edit.png) no-repeat left 5px;
   padding: 0px 0px 0px 40px;
   margin: 4px 0px 0px 0px;
   min-height: 52px;
}
.copy { font-size: 8pt }
.quote {
   color: #757575;
   background-color: #FFE2D5;
   border: 1px dotted #F93;
   text-align: justify;
   padding: 5px;
}


2. Add the following code after (or just at the top in the global block "Top part of the website")

Code
<script type="text/javascript">
   function convertLD(lastmod){
   var months = ['Jan','Feb','March','April','May','June','July','Aug','Sep','Oct','Nov','Dec'];
   var lmd=[];var d=new Date();if (typeof lastmod=='string' && lastmod.length>5){lastmod=parseInt(lastmod);}if (typeof lastmod=='number' && !isNaN(lastmod)){d.setTime(lastmod*1000);}var cday=d.getDate();if(cday<=9){cday='0'+cday};var cmin=d.getMinutes();if(cmin<=9){cmin='0'+cmin};var csec=d.getSeconds();if(csec<=9){csec='0'+csec};var chour=d.getHours();if(chour<=9){chour='0'+chour};var mon=d.getMonth()+1;if(mon<=9){mon='0'+mon};var month=months[d.getMonth()];var year=d.getFullYear();
   lmd['month'] = month;
   lmd['year'] = year;
   lmd['mon'] = mon;
   lmd['day'] = cday;
   lmd['hour'] = chour;
   lmd['min'] = cmin;
   lmd['sec'] = csec
   lmd['time'] = chour+':'+cmin+':'+csec;
   return (lmd);
   }
</script>


3. Now at the following code at the top of the "Appearance of entries" of any module the following code:

Code
<script type="text/javascript">var lmd=convertLD('$LASTMOD$');</script>


4. Now at the same template at the following code after $MESSAGE$.

Code
<?if($LASTMOD$ != $TIMESTAMP$)?>
<div class="news_edit">

   <span class="copy"><i>Last edited on</i></span>
   <div class="quote"><script type="text/javascript">document.write(lmd['day']+'.'+lmd['mon']+'.'+lmd['year'])</script> at <script type="text/javascript">document.write(lmd['time'])</script></div>
</div>
<?endif?>


5. Now go to Page with entry full text and its comments and add the following code after $MESSAGE$:

Code
<?if($LASTMOD$ != $TIMESTAMP$)?>
<script type="text/javascript">var lmd=convertLD('$LASTMOD$');</script>
<div class="news_edit">

   <span class="copy"><i>Last edited on</i></span>
   <div class="quote"><script type="text/javascript">document.write(lmd['day']+'.'+lmd['mon']+'.'+lmd['year'])</script> at <script type="text/javascript">document.write(lmd['time'])</script></div>
</div>
<?endif?>

Author - GoblinaS
Date Added - 2011-10-06 в 11:05 PM
UcozBaze All Scripts And Templates » Scripts and Coding » Other » Last edited on ucoz (Last edited on ucoz)
  • Page 1 of 1
  • 1
Search:
                                                               
Statistics Forum
New Posts Popular topic Top Forum Users New User

type list biuro popierius (0)
type list kokiomis kaldromis miegate (0)
type list power bank įkroviklis (0)
type list vaikams pagalvės (0)
type list vartų automatika (0)
type list geriausi pirkiniai (0)
type list ekologiški, tvarūs daiktai kasdienai (0)
type list stovykla Lietuvoje (0)
type list namų apsauga (0)
type list šilumos siurblys oras vanduo (0)
type list powerbank išorinė baterija (0)
type list automobilių numelio rėmeliai (0)
type list pensijų pakopos (0)
type list šildymo sistemos (0)
type list dujinis katilas name (0)
type list karjeros testas (0)
type list drąskyklė katei (0)

type list Skaiciuojam nuo 1 iki 1000 ! (558)
type list Forum SignatureBar (60)
type list Avatars (23)
type list Juokingos Fotkes :) (19)
type list Kaip pakeisti paveiksla mazas? (19)
type list Mini-Chatas islendantis is sono ucoz (15)
type list Mp3-Tau.do.am (13)
type list Шаблон форума для ucoz For-css (12)
type list Apklausa Jūsų Svetainei New ucoz (11)
type list Ucoz script - favicon (11)
type list Megsti samp? Ateik cia (10)
type list Button scrolling up ucoz (10)
type list Slider KinoPlius Help to setup :) (10)
type list Money for the forum ucoz (9)
type list KinoPlius (9)
type list Puslapis "Atliekami techniniai darbai" Ucoz scriptas (9)
type list SexMergytes.do.am (9)
type list 11.17.2011 (9)
type list User personal Page ucoz (8)
interout
Forum Posts: 1027
Comments: 51
Reputation: 83
Rank:
GoblinaS
Forum Posts: 380
Comments: 15
Reputation: 25
Rank:
Adi
Forum Posts: 179
Comments: 11
Reputation: 23
Rank:
Esquire
Forum Posts: 147
Comments: 8
Reputation: 5
Rank:
BAtman
Forum Posts: 129
Comments: 1
Reputation: 18
Rank:
WaSHkaZ
Forum Posts: 83
Comments: 0
Reputation: 3
Rank:
Skacikas
Forum Posts: 71
Comments: 0
Reputation: 12
Rank:
meskis
Forum Posts: 51
Comments: 0
Reputation: 25
Rank:
Gytenas
Forum Posts: 51
Comments: 0
Reputation: 1
Rank:
vicka
Forum Posts: 50
Comments: 1
Reputation: 4
Rank:
jokerzvobscure
Forum Posts: 0
Comments: 0
Reputation: 0
Rank:
dubroviena008
Forum Posts: 0
Comments: 0
Reputation: 0
Rank:
w4bzero
Forum Posts: 0
Comments: 0
Reputation: 0
Rank:
infoebrasha
Forum Posts: 0
Comments: 0
Reputation: 0
Rank:
karilekamo
Forum Posts: 10
Comments: 0
Reputation: 0
Rank:
zoro
Forum Posts: 0
Comments: 0
Reputation: 0
Rank:
pebotapple
Forum Posts: 0
Comments: 0
Reputation: 0
Rank:
aressvi
Forum Posts: 0
Comments: 0
Reputation: 0
Rank:
eddison_martin3
Forum Posts: 2
Comments: 0
Reputation: 0
Rank:
mariuspijunas
Forum Posts: 20
Comments: 0
Reputation: 0
Rank:


Site design by uCozBaze
uCozBaze © 2011-2016