pre1.2.9 nightly-build

Discuss phpwcms here, please do not post support requests, bug reports, or feature requests! Non-phpwcms questions, discussion goes in General Chat!
ssyfrig
Posts: 364
Joined: Tue 2. Mar 2004, 17:01
Location: Zürich / Switzerland
Contact:

pre1.2.9 nightly-build

Post by ssyfrig »

Hi

I installed the pre1.2.9 nightly-build on my localhost. I like the new setup routine. Today I test also an upgrade from an existing site.

I saw some cool new features. But, hey who need's the CP "Kochrezept" ?

:D :D I found some staff under \phpwcms_code_snippets\FE_Login :-)

greez Sven
Last edited by ssyfrig on Tue 26. Dec 2006, 17:08, edited 1 time in total.
Evoplure
Posts: 43
Joined: Fri 8. Jul 2005, 02:59

Where?????????????????????????????

Post by Evoplure »

Where could I found the 1.2.9 version ???? I cant find the announcement or its link here... Not found in sourceforge... not in Phpwcms-docu... not in phpwcms website... Is that an underground release?????? Kochrezept????????????? This cms is getting me mad...
* Maybe I'm wrong * Maybe not *
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Post by flip-flop »

@ssyfrig: Please rename the title of this thread into pre1.2.9 nightly-build. It´s isn´t the stabel version :!:
That´s very confusing for other people.

@Evoplure:
Is that an underground release??????
Yes and no. It is an nighly-build version.
Kochrezept?????????????
-> recipe
Take a look into the search template. For me the technology is interesting.

The download pre1.2.9 nightly-build: http://www.phpwcms.org/release/nightly-build/

Knut :D

[EDIT] Thanks to ssyfrig for editing the title. [/EDIT]
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Post by juergen »

Here is what I found out for new:

http://ukw-tagung.com/das_war_2006.phtml

-Pagination, a very fine tool ! Works for articles (not tested) as well as for article listings.
-Change Pagetitle for category and article as well.. This is very mighty for SEO Themes.

-update ...like a charm (localhost and Server) the wrong characters on my example are my product :?
- new user management
-a very good newsletter function (just used it) and a better understanding for testmails and outgoing mails
-write forms to database .. YEAH !

There are some errors .. caused by my testings with imagemagick 6.2.9, they may disappear when my stupid mind gets rid of too much X-mas food.

It's pure fun playing with this version ! And its rounded up by exdata mod, not a single problem installing it inside.

Impressed ;)

Jürgen
User avatar
StudioZ
Posts: 802
Joined: Fri 28. May 2004, 19:57
Location: Québec, Canada
Contact:

Calendar ?

Post by StudioZ »

1.2.9 sounds really good :)
Anyone noticed the calendar folder inside the template folder ?
Wonder how can one fiddle, create and call this Calendar... :roll:
Any special RT for it :?: :wink:

... Gregory Peccary, the inventor of THE Calendar ... -- F.Z. :wink:

Cheers,

Yves
Image
PhpWCMS Evangelist, -- iRoutier.com Running phpWCMS 1.4.2, r354 -> Great Version!!!!
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Post by flip-flop »

Hi yves,

Image
There you can see the {CALENDAR} tag. At this momemt there is no CP/RT to configure the calendar.
Move the file calendar.php from
/template/inc_script/frontend_render/disabled/ -> /template/inc_script/frontend_render/
Edit the file /template/calendar/calendar.ini to adjust days weeks and so on.
Every entry is a link to an artikle or extern adress.

calendar.ini
----------------------------------------------------
[200609]
-->> Month

1 = "index.php?projects&calendardate=2006-09-01"
-->> Day of month with a link to specified the category & show the specified calendar date

2 = "index.php?id=43,47,0,0,1,0"
-->> A link to an article

28 = "index.php?guestbook"
-->> link to the category guestbook without a change of the calendar date

[200610]
10 = "http://www.webverbund.de _blank"
-->> jump to an extern page
----------------------------------------------------

CSS:

Code: Select all

/* -------- Calendar --------- ------------------------
// PHP Calendar (version 2.3), written by Keith Devens
// http://keithdevens.com/software/php_calendar
// see example at http://keithdevens.com/weblog
// License: http://keithdevens.com/software/license

// enhanced by Oliver Georgi for phpwcms
// figure out by flip-flop
 ------------------------------------------------------ */
.calendar {
	padding: 0; margin:0;
	font-family: Verdana, Arial, Helvetica;
	text-align: center;
	font-size: 12px; 
	line-height: 13px;
	color: #666;
/*	background-color: #f8f8f8; */
/*	border: 1px solid #bbbbbb; */
}

.calendar a:hover { /* the selected day */
	padding: 0; margin:0;
	text-decoration: none;
	color: #FF0000; /* red */
	background-color : #FDFF00;
}

.calendarMonth { /* the month */
	padding: 1px 0; margin:0;
/* 	background-color : #FFFFDF; */
	border-bottom: 1px solid #ccc;
}
/* ----- head ----- */
.calendarPrev {  /* link sign for prev month */
	padding: 0; margin:0;
	color: #CF0000; 
}

.calendarNext {  /* link sign for next month */
	padding: 0; margin:0;
	color: #CF0000; 
}

.calendarWeekNoTitle { /* week numeration title */
	padding: 2px 1px ; margin:0;
/*	font-size: 11px; */ 
	color: #5BAF00; /* green */
	font-weight: normal; /* bold; */
/*	border-top: 1px solid #dddddd; */
}

.calendarDayName { /* day numeration name horizontal */
	padding: 0 1px; 
  margin: 0;
/*	font-size: 11px; */ 
	color: blue;
	font-weight: normal; /* bold; */
	border-top: 1px solid #dddddd;
}

/* ----- output of week and day ----- */
.calendarWeek { /* week numeration vertical */
	padding: 2px 0; margin:0;
	font-size: 11px; 
	color: #5BAF00;
}

.calendarSelectedDay { /* the selected day */
	padding: 0; margin:0;
	font-size: 11px; 
	font-weight: bold;
	color: red; #FF0000; /* red */
	background-color : #fff;
}

/* ---------------- END calendar --------------------- */
Regards Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
Ati
Posts: 50
Joined: Fri 19. May 2006, 20:09
Contact:

Post by Ati »

Nice Job Knut :D
"Seien wir realistisch - versuchen wir das Unmögliche" (Chè Guevara)
User avatar
StudioZ
Posts: 802
Joined: Fri 28. May 2004, 19:57
Location: Québec, Canada
Contact:

Post by StudioZ »

Hey Knut ! :D :D :D
Thanks a bunch for these in depth explanations.
Thanks for your time 8)
Will check this soon.

Sounds like we finally have a Calendar integrated inside PhpWCMS! Yeah!!!! This is Great News !!!!! No more hacking :wink:

The New Year sure begins on th good track :D :D :D

@ Oliver:
Thank you for making this possible.
This just confirms again how much modular and well designed is PhpWCMS

Cheers,

Yves
Image
PhpWCMS Evangelist, -- iRoutier.com Running phpWCMS 1.4.2, r354 -> Great Version!!!!
User avatar
jsw_nz
Posts: 907
Joined: Fri 2. Apr 2004, 02:42
Location: New Zealand

Post by jsw_nz »

Hi Guys,

Just downloaded and did a test-drive. OliG has included a new option for images - now supports unique images for (1) article listing and (2) full article - this is a nice addition - greater design flexibility.

As far as setup goes - nice - however the file: setup.func.inc.php
needs to be relocated/remapped - for the time being - copy and pasted it into root of setup folder...

As far as the calendar is concerned - right now the calendar.ini generates cal links - and since this is hard coded - have to think OliG has in mind to map wcms articles to the calendar at some stage - Knut - is that your understanding?

Pagination of articles works great - pagination for contentparts still under construction -

On this note I noticed that pagination for contentparts is global -
which means you are limited to one contentpart / page

Just a mention here - It would be nice to have the ability to add pagebreaks at will....so maybe at beginning of contentpart a checkbox...

create pagebreak

this way you can combine more that one contentpart per page....

page 1
contentpart 1
contentpart 2

page 2
contentpart 3

page 3
contentpart 4
contentpart 5

just a thought
:D

ssyfrig - Have you managed to get FE_LOGIN stuff working at this stage?
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Post by juergen »

Login works as well
User avatar
sustia
Posts: 651
Joined: Fri 2. Apr 2004, 22:29
Location: Lecce (Italy)
Contact:

Post by sustia »

I agree with you guys, a lot of features in this version :D
I've not yet experimented with the calendar, and seems that the article pagination doesn't work yet.
And I agree with DF6IH: writing the forms to database is a very great enhancement :D, thanks to OG.
Campeones del mundo!
Vegetables!
User avatar
StudioZ
Posts: 802
Joined: Fri 28. May 2004, 19:57
Location: Québec, Canada
Contact:

Post by StudioZ »

DF6IH wrote:Login works as well
Login is working ? :) Good News 8)
Would be nice if you could write this eBook :
PhpWCMS - For Dummies: How to hook the long awaited new Login feature?
By DF6IH
:wink:

Cheers,

Yves
Image
PhpWCMS Evangelist, -- iRoutier.com Running phpWCMS 1.4.2, r354 -> Great Version!!!!
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Post by juergen »

Ebook?

:shock:

No CP for this !
phalancs
Posts: 793
Joined: Thu 19. Feb 2004, 05:09
Location: Germany

Post by phalancs »

tell us more about the login thingy is it a code snippet to inlude or what :O
2008
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Post by juergen »

Oh ... rhetorical requests .....

Just used the ##loginout## from the snippets .. no groups, no nothing, but enough for my needs.
Post Reply